N!에서 뒤에서부터 처음 0이 아닌 숫자가 나올 때까지 0의 개수를 구하는 프로그램을 작성하시오.
입력
첫째 줄에 N이 주어진다. (0 ≤ N ≤ 500)
$ test1
10
$ test2
3
출력
첫째 줄에 구한 0의 개수를 출력한다.
$ test1
2
$ test2
0
# [1676] 팩토리얼 0의 개수
lastNumber = int(input())
factorial = 1
result = 0
for i in range(1, lastNumber+1):
factorial *= i
while True:
if factorial % 10 == 0:
result += 1
else:
break
factorial = factorial // 10
print(result)