while True: try:

    str1, str2 = input(), input()
    print(int(str1) + int(str2))
    
except:
    break