#include<iostream> using namespace std; int main(){ double num; int n; scanf("%lf",&num); n = (int)num; printf("%d\n",n); }