import sys

for line in sys.stdin:
    if line:
        a = line.split()
        print(int(a[0]) + int(a[1]))