← Back to List

11024번: 더하기 4 ↗

Solutions

Python 3
130 B | 130 chars
a=input()
a=int(a)
for i in range(0,a):
    L=list(map(int,input().split(" ")))
    S=0
    for x in L:
        S=S+x
    print(S)