6 lines
90 B
Python
6 lines
90 B
Python
while True:
|
|
a,b=map(int,input().split())
|
|
|
|
if a==b==0:
|
|
break
|
|
print(a+b) |