Problem1532--22-数组-2-无进位加法

1532: 22-数组-2-无进位加法

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

Description

小南很喜欢做a+b,但是他经常忘记进位,所以他算88+12=90,而不是100。 现在你给了小南一些a+b的算式,请问他算出来会是什么?

Input

第一行是一个整数K,表示样例的个数。 每个样例占一行,为两个整数a,b,0≤a,b≤1e9。

Output

每行输出一个样例的结果,不要输出前导0。

Sample Input Copy

3
1 2
5 6
55 55

Sample Output Copy

3
1
0

Source/Category