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