#include <iostream>
using namespace std;
int main(){int w;while(cin>>w){ cout<<((w>50)?w-1:w)<<endl; }}
用法為 (條件)?正確做的事:錯誤做的事
(條件)?正確做的事:錯誤做的事