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