⌨️
[AtCoder]ABC-288|A - Many A+B Problems
設問ページ
提出結果
def getInt():
return int(input())
def getIntListRow(N):
return [list(map(int, input().split())) for _ in range(N)]
def main():
n = getInt()
ab = getIntListRow(n)
for c in ab:
print(sum(c))
if __name__ == "__main__":
main()
Discussion