#include<stdio.h> #include<math.h> int main(){ float x; scanf("%f",&x); int y = (int) x; printf("%d\n",y); return 0; }