2010年7月30日 星期五

高中 d068: 該減肥了!



想看題目請點我

#include<iostream>
using namespace std;
int main()
{
     int weight ;
     while(cin >> weight )
     {
         cout << weight - (weight>50) << endl ;
     }
     return 0 ;
}