Problem J: A+B for Input-Output Practice (II)

Problem J: A+B for Input-Output Practice (II)

Time Limit: 1 Sec  Memory Limit: 64 MB
Submit: 377  Solved: 261
[Submit] [Status] [Web Board] [Creator:]

Description

The first line integer means the number of input integer a and b. Your task is to Calculate a + b.

Input

Your task is to Calculate a + b. The first line integer means the numbers of pairs of input integers.

Output

For each pair of input integers a and b you should output the sum of a and b in one line, and with one line of output for each line in input.

Sample Input Copy

2
1 5
10 20

Sample Output Copy

6
30