#define _GLIBCXX_DEBUG #include using namespace std; int main() { string N; cin >> N; if(N[0] == '-') cout << 0 << endl; else if((int)N.size() >= 3){ cout << N.substr(0, (int)N.size()-2) << endl; } }