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