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