import java.util.*;

public class Solution { /** * the number of 0 * @param n long长整型 the number * @return long长整型 */ public long thenumberof0 (long n) { // write code here long sum = 0; long temp = 5; while(n / temp >= 1 ){ sum += n / temp; temp *= 5; } return sum; } }