python 3.0
while True:
    try:
        s=input().split(" ")
        print(int(s[0])+int(s[1]))
    except:
        break