문제링크: https://www.acmicpc.net/problem/2577
이번에는 count 함수를 사용하여 특정 값이 그 리스트에 몇개 포함이 되어있는지 알수 있도록 하는 문제다.
A = int(input()) B = int(input()) C = int(input()) m = list(str(A*B*C)) for i in range(10): print(m.count(str(i)))