#include<iostream> #include<cmath> using namespace std; int main(){ double n; scanf("%lf",&n); printf("%0.f",floor(n)); return 0; }