Count the number of trailing 0s in factorial of a given number.
First line of input contains T - number of test cases. Its followed by T lines, each containing an integer N.
1 <= T <= 10000
1 <= N <= 1015
For each test case, print the number of trailing 0s in N!, separated by new line.
3
2
5
20
0
1
4
Self Explanatory