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