Problem A: A+B 输入输出练习II

Memory Limit:32 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:1359 Solved:706

Description

你的任务是计算a+b。

Input

第一行是一个整数N,表示后面会有N行a和b,通过空格隔开。

Output

对于输入的每对a和b,你需要在相应的行输出a、b的和。
如第二对a和b,对应的和也输出在第二行。

Sample Input Copy

2
1 5
10 20

Sample Output Copy

6
30