list를 받아서 하나씩 더해주면 된다.
n = int(input()) num = list(input()) sum = 0 for i in num: sum += int(i) print(sum)