백준 1676 - 팩토리얼 0의 개수 (파이썬)

Updated:

Answer

n = int(input())
print(n // 5 + n // 25 + n // 125)

Categories:

Updated: