#include<bits/stdc++.h>
using namespace std;
int main(){
long long int n,zero;
while(cin>>n){
long long int temp=5,sum=0;
while(1){
zero=n/temp;
if(zero==0) break;
else {sum+=zero;temp*=5;}
}
cout<<sum<<endl;
}
return 0;
}