Tuesday, May 3, 2011

10499 - The Land of Justice


#include<iostream>
#include<cstdio>
#include<cstdlib>
using namespace std;
int main()
{
    long n;
    while(cin>>n&&n>0)
        if(n==1)
            cout<<"0%\n";
        else
            cout<<25*n<<"%\n";
    exit(0);
}

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.