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