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