풀이
n=int(input()) stack=[] for i in range(n): a,b = map(int,input().split()) stack.append(a+b) for i in stack: print(i)