문제/백준_파이썬
47. 11720(숫자의 합)
sm_hope
2022. 5. 16. 20:37
N = int(input())
S = list(input())
sum = 0
for i in range(N):
sum += int(S[i])
print(sum)