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