A.py 93 B

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