Complete the ternary calculation.
There are multiple test cases. The first line of input contains an integer T indicating the number of test cases. For each test case:
There is a string in the form of "number1 operatora number2 operatorb number3". Each operator will be one of {'+', '-' , '*', '/', '%'}, and each number will be an integer in [1, 1000].
For each test case, output the answer.
The calculation "A % B" means taking the remainder of A divided by B, and "A / B" means taking the quotient.