#include<stdio.h> #include<math.h> int main(){ double a; int b; scanf("%lf",&a); b=(int)a; printf("%d\n",b); return 0; }