from math import factorial
count=0
n=factorial(int(input()))
while n%10 == 0:
n = n//10
count+=1
print(count)
'백준 알고리즘 > 수학' 카테고리의 다른 글
백준 6591번 파이썬 (0) | 2018.09.28 |
---|---|
백준 2407번 파이썬 (0) | 2018.09.28 |
백준 10872번 파이썬 (0) | 2018.09.28 |
백준 11051번 파이썬 (0) | 2018.09.28 |
백준 11050번 파이썬 (0) | 2018.09.24 |