#P3403. Trailing Zeros
Trailing Zeros
当前没有测试数据。
Description
Your task is to calculate the number of trailing zeros in the factorial n!.
For example, 20!=2432902008176640000 and it has 4 trailing zeros.
Input Format
The only input line has an integer n.Output Format
Print the number of trailing zeros in n!.20
4