//Normal #define _GLIBCXX_DEBUG #define ll long long #include using namespace std; using Graph = vector>; void print(auto a){ cout << a; } void prints(auto a){ cout << a << " "; } void prints(){ cout << " "; } void printl(auto a){ cout << a << endl; } void printl(){ cout << endl; } void fix(int n){ cout << fixed << setprecision(n); } int main(){ string S; cin >> S; int s = (int)S.size(); if(s <= 2 or S[0] == '-'){ printl(0); }else{ printl(S.substr(0, s-2)); } return 0; }