| 110 | } |
| 111 | |
| 112 | int main() { |
| 113 | // YOUR CODE GOES HERE |
| 114 | // Please take input and print output to standard input/output (stdin/stdout) |
| 115 | // E.g. 'cin' for input & 'cout' for output |
| 116 | int T; |
| 117 | cin>>T; |
| 118 | |
| 119 | while(T--){ |
| 120 | solve(); |
| 121 | } |
| 122 | |
| 123 | return 0; |
| 124 | } |