Problem A

Statement
Copy Copied
A. A+B (Trial Problem)time limit per test2 smemory limit per test512 MBinputstandard inputoutputstandard outputYou are given two integers $$$a$$$ and $$$b$$$. Print $$$a+b$$$.InputThe first line contains an integer $$$t$$$ ($$$1 \le t \le 10^4$$$) — the number of test cases in the input. Then $$$t$$$ test cases follow.Each test case is given as a line of two integers $$$a$$$ and $$$b$$$ ($$$-1000 \le a, b \le 1000$$$).OutputPrint $$$t$$$ integers — the required numbers $$$a+b$$$.ExampleInput41 5314 15-99 99123 987Output6
329
0
1110