UVA 10499

#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
    int n;
    double s;
    while(cin>>n)
    {
        if(n<0)break;
        if(n<=1)s=0;
        else s=n;
        s=s*25.0;
        printf("%.lf%%\n",s);
    }
    return 0;
}

 

posted @ 2012-04-28 12:09  open your eyes  阅读(118)  评论(0编辑  收藏  举报