python 3
python3
while True:
try:
a = input().split(' ')
#b = int(input())
print(sum(int(i) for i in a))
except:
break 
