← Back to List

7891번: Can you add this? ↗

Solutions

Python 3
70 B | 70 chars
for i in range(int(input())):
    print(sum(map(int,input().split())))