문제10950
t = int(input()) nums = [list(map(int,input().split())) for _ in range(t)] for i in range(t): print(nums[i][0] + nums[i][1])