1
0
Fork 0
cp/ntu/demso0.c

13 lines
123 B
C

#include <stdio.h>
int main()
{
short n;
scanf("%hd", &n);
printf("%d\n", n/5 + n/25 + n/125 + n/625);
return 0;
}