t = int(input()) for i in range(t): a, b = map(int, input().split()) print(a+b)
for는 반복이라는 것을 기억하자
for