#abc288a. [abc288_a]Many A+B Problems

[abc288_a]Many A+B Problems

Problem Statement

You are given NN pairs of integers: (A1,B1),(A2,B2),ldots,(AN,BN)(A_1, B_1), (A_2, B_2), \\ldots, (A_N, B_N). For each i=1,2,ldots,Ni = 1, 2, \\ldots, N, print Ai+BiA_i + B_i.

Constraints

  • 1leqNleq10001 \\leq N \\leq 1000
  • \-109leqAi,Bileq109\-10^9 \\leq A_i, B_i \\leq 10^9
  • All values in the input are integers.

Input

The input is given from Standard Input in the following format:

NN A1A_1 B1B_1 A2A_2 B2B_2 vdots\\vdots ANA_N BNB_N

Output

Print NN lines. For i=1,2,ldots,Ni = 1, 2, \\ldots, N, the ii-th line should contain Ai+BiA_i+B_i.


Sample Input 1

4
3 5
2 -6
-5 0
314159265 123456789

Sample Output 1

8
-4
-5
437616054
  • The first line should contain A1+B1=3+5=8A_1 + B_1 = 3 + 5 = 8.
  • The second line should contain A2+B2=2+(6)=4A_2 + B_2 = 2 + (-6) = -4.
  • The third line should contain A3+B3=(5)+0=5A_3 + B_3 = (-5) + 0 = -5.
  • The fourth line should contain A4+B4=314159265+123456789=437616054A_4 + B_4 = 314159265 + 123456789 = 437616054.