Your task is to calculate the number of trailing zeros in the factorial $n!$ .
For example, $20!=2432902008176640000$ and it has $4$ trailing zeros.
The only input line has an integer $n$ .
Print the number of trailing zeros in $n!$ .
20 \n
20
\n
4 \n
4