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