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