PRI1: Adding Numbers // Intermediate

 

Bob, Alice's classmate, is a little smarter. He knows how to add 1 to a number, but, when he is given any two numbers, he does not know how to add them. Write a program to help Bob add two numbers.

Input Format

The first line has the number of test cases .
The following lines each contain two numbers, and .

Sample Input

3
1 2
3 4
5 6

Output Format

The output should contain lines, each of which should contain a single number: .

Sample Output

3
7
11

Show Hints


You must be logged in to submit a solution.