#include <stdio.h>

int main()
{
 double zahl;
 scanf("%lf", &zahl);
 printf("%.0f\n", zahl);
 return 0;
}