Can you add this?
시간 제한: 1000ms메모리 제한: 128MB출처: CERC 2008BOJ 7891
문제
Given two integers, calculate and output their sum.
입력
The input contains several test cases. The first line contains and integer t (t ≤ 100) denoting the number of test cases. Then t tests follow, each of them consisiting of two space separated integers x and y (−109 ≤ x, y ≤ 109).
출력
For each test case output output the sum of the corresponding integers.
예제
예제 1
입력
4 -100 100 2 3 0 110101 -1000000000 1
출력
0 5 110101 -999999999
코드를 제출하려면 로그인하세요.