while True:
    try:
        a = int(input())
        b = int(input())
        print(a + b)
    except:
        break