#include<cmath> #include<iostream> using namespace std; int main(){ float n; cin>>n; cout<<floor(n)<<endl; return 0; }