숫자를 입력받아 문자열로 변경하여 각 원소를 더하여 숫자의 합을 출력한다.
n = int(input()) data = str(input()) result = 0 for i in range(n): result+=int(data[i]) print(result)