import sys

for line in sys.stdin:
    if line.split():
        a,b = map(int,line.split())
        print(a+b)