Problem1672--22-循环-1-输入输出练习2

1672: 22-循环-1-输入输出练习2

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

输入两个数,输出他们的和

Input

首先输入一个整数T,代表有T组样例,
接着每组样例,两个数字a,b,均在int范围内

Output

输出a+b的值,其值在int范围内,每个结果占一行

Sample Input Copy

3
10 10
20 20
25 25

Sample Output Copy

20
40
50

Source/Category