문제

링크

풀이

n = int(input())
 
f = 1
for i in range(1, n+1):
  f *= i
 
print(str(f).count('0'))