N = input()
if(int(N) < 10):
N = '0' + N
check_value = int(N)
count = 0
while True:
add_value = int(N[0]) + int(N[1])
count += 1
N = N[-1] + str(add_value)[-1]
if(check_value == int(N)):
break
print(count)
'# 코딩 문제 관련 > 파이썬' 카테고리의 다른 글
Baekjoon 1065번(python) (0) | 2019.04.28 |
---|---|
Baekjoon 4673번(python) (0) | 2019.04.28 |
Baekjoon 4344번(python) (0) | 2019.04.27 |
Baekjoon 1546번(python) (0) | 2019.04.27 |
Baekjoon 10871번(python) (0) | 2019.04.27 |