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