def func(): while TRUE: try: a,b = map(int,input().strip().split()) print(a+b) except EOFError: break