n = int(input())
num = input()
s = 0
for i in num:
s += int(i)
print(s)
n = int(input())
print(sum(map(int, input())))
'코딩테스트 > 백준' 카테고리의 다른 글
백준 1152번 단어의 개수 python 파이썬 (0) | 2022.10.07 |
---|---|
백준 8958번 OX퀴즈 python 파이썬 (0) | 2022.10.07 |
백준 11650번 좌표 정렬하기 python 파이썬 (0) | 2022.10.07 |
백준 1427번 소트인사이드 python 파이썬 (0) | 2022.10.07 |
백준 11399번 ATM python 파이썬 (0) | 2022.10.06 |