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