{"raw_statement":[{"iden":"problem statement","content":"You are given $N$ pairs of integers: $(A_1, B_1), (A_2, B_2), \\ldots, (A_N, B_N)$. For each $i = 1, 2, \\ldots, N$, print $A_i + B_i$."},{"iden":"constraints","content":"*   $1 \\leq N \\leq 1000$\n*   $-10^9 \\leq A_i, B_i \\leq 10^9$\n*   All values in the input are integers."},{"iden":"input","content":"The input is given from Standard Input in the following format:\n\n$N$\n$A_1$ $B_1$\n$A_2$ $B_2$\n$\\vdots$\n$A_N$ $B_N$"},{"iden":"sample input 1","content":"4\n3 5\n2 -6\n-5 0\n314159265 123456789"},{"iden":"sample output 1","content":"8\n-4\n-5\n437616054\n\n*   The first line should contain $A_1 + B_1 = 3 + 5 = 8$.\n*   The second line should contain $A_2 + B_2 = 2 + (-6) = -4$.\n*   The third line should contain $A_3 + B_3 = (-5) + 0 = -5$.\n*   The fourth line should contain $A_4 + B_4 = 314159265 + 123456789 = 437616054$."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}