#include<iostream> using namespace std; int main(){ int a, b, c; while(cin>>a){ b=a; c=0; while((a/5)>0){ c=c+a/5; a=a/5; } cout<<c<<endl; } }在 5-32頁