while 1:
    try:
        inp = input()
        inp = inp.split()
        print(int(inp[0])+int(inp[1]))
    except:
        break