for i in range(5): print(i)
0 1 2 3 4 정답
정답
T = int(input()) for i in range(T): A, B = map(int, input().split()) print(A + B)