# 문제 설명
# 입력: 하나의 정수 (예: 122333)
# 출력: 0부터 9까지 각 숫자가 나타난 횟수
# 핵심: 숫자를 문자열로 변환하여 하나씩 훑거나, 나머지와 몫 연산을 이용해 자릿수를 분리합니다.


# [Input Example]
n = '123456789' #입력받기

num =[0] * 10
print(num)


# 3
# 2
# 0
# 3
# 0
# 0
# 0
# 0
# 0
# 0




Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: