N = int(input()) for i in range(N): A, B = map(int, input().split()) print(A+B) 基本的には問題文のとおりに解ければ大丈夫です。 AとBがN回 ...