C.py 110 B

12345
  1. n = int(input().strip())
  2. for i in range(n):
  3. a, b = map(int, input().strip().split())
  4. print(a + b)