D.py 110 B

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