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