G.py 85 B

1234
  1. while True:
  2. a, b = map(int, input().strip().split())
  3. print(a + b)
  4. print()