Files
CodeObject/storage/zeta/py/completed/10952.py

6 lines
93 B
Python

while True:
s = sum(map(int, input().split()))
if s == 0:
break
print(s)