输入
输入第一行一个整数 t(1\le t\le10^5),代表询问个数。
接下来输入 t 行,每行一个字符串,格式为下面几种之一(x,y 为整数且 1\le x,y\le10^9)
calculate x plus y
calculate x minus y
calculate x multiplied by y
calculate the quotient of x over y
calculate the remainder of x divided by y
输出
每个询问输出一行一个整数,根据输入的不同,分别代表:
样例
标准输入 复制文本 |
5 calculate 114514 plus 1919810 calculate 1919810 minus 114514 calculate 114514 multiplied by 1919810 calculate the quotient of 1919810 over 114514 calculate the remainder of 1919810 divided by 114514 |
标准输出 复制文本 |
2034324 1805296 219845122340 16 87586 |