Usually, when addition is performed, each carry is added onto the next digit in the number. For example, , as the carry from
is added onto
. If we perform addition without carry, the answer would have been
, as the carry from
is discarded.
Given two large numbers, can you perform addition without carry?
Input Specification
The first line will contain
, the number of test cases.
cases follow.
For each case, there will be a single line consisting of two space-separated integers,
, for which you are to perform addition without carry on.
Output Specification
For each test case, output the answer on its own line.
Sample Input
2
17 18
111111111111111111111 999999999999999999999
Sample Output
25
0
Comments