Python/백준

백준 - 9085 더하기

sophia02 2022. 7. 3. 21:41
T = int(input())
for i in range(T):
    N = int(input())
    S = sum(list(map(int, input().split())))
    print(S)