6 lines
98 B
Python
6 lines
98 B
Python
while 1:
|
|
try:
|
|
print(sum(map(int,input().split())))
|
|
except EOFError:
|
|
break
|