#include #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); string N; cin >> N; if (N[0] == '-') { cout << 0 << endl; } else { N.pop_back(); N.pop_back(); cout << N << endl; } return 0; }