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