Pages

Saturday, August 13, 2011

d122. Oh! My Zero!!


#include
using namespace std;

int main()
{
long input;

while(cin>>input)
{
long output = 0;
while(input>4)
{
input/=5;
output +=input;
}
cout< }
return 0;
}

No comments:

Post a Comment