5 lines
73 B
Python
5 lines
73 B
Python
while True:
|
|
try:
|
|
print(sum(map(int,input().split())))
|
|
except:
|
|
break |