#include <iostream>
using namespace std;

int main() {
   float a;
   scanf("%f",&a);
   printf("%.0f",a);
   return 0;
}
// 64 位输出请用 printf("%lld")