Programming/백준
[백준] 15596 - 정수 N개의 합 (파이썬)
pental
2020. 4. 9. 16:47
def solve(a):
ans = 0
for i in a:
ans += i
return ans