E.py 119 B

123456
  1. while True:
  2. a, b = map(int, input().strip().split())
  3. if a == 0 and b == 0:
  4. break
  5. print(a + b)