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