* 문제
* 코드
c = [0,0,0,0,0,0,0,0,0,0]
A = int(input())
B = int(input())
C = int(input())
result = list(str(A*B*C)) #A, B, C를 곱하고 배열로 저장
for i in result: #result배열 값 순서대로 반복
for j in range(10): #j는 0~9로 9번 반복
if (i == str(j)): #i와 j가 같으면 그 수를 index로 사용해서 c배열에 1증가 시킨다.
c[j] += 1
for i in range(10):
print(c[i])