#45557: 也可以用while


tc11320811 (李宥澂)


 

int main(){
int a;
cin>>a;
while(a>50){
  a--;
  break;
}
cout<<a;
  return 0;
}