https://www.acmicpc.net/problem/2577
이 문제의 핵심: count("찾을문자") 함수 이용하기
count("찾을문자")
a = int(input()) b = int(input()) c = int(input()) total = str(a * b * c) for i in range(10): print(total.count(f"{i}"))