728x90
반응형
단순 구현 문제이다.
while 1:
n = input()
if n == '0':
break
while len(n) > 1:
res = 1
print(n, end=' ')
for c in n:
res *= int(c)
n = str(res)
print(n)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 1408번 24(python) (0) | 2021.03.09 |
---|---|
백준 알고리즘 18113번 그르다 김가놈(python) (0) | 2021.03.09 |
백준 알고리즘 4458번 첫 글자를 대문자로(python) (0) | 2021.03.08 |
백준 알고리즘 4328번 기초 나머지 계산(python) (0) | 2021.03.08 |
백준 알고리즘 15178번 Angles(python) (0) | 2021.03.08 |