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