#include<stdio.h> #include<math.h> int main(){ double n; scanf("%lf",&n); printf("%.0f",floor(n)); return 0; }