6 lines
93 B
Python
6 lines
93 B
Python
while True:
|
|
s = sum(map(int, input().split()))
|
|
if s == 0:
|
|
break
|
|
print(s)
|