#include <iostream>
using namespace std;

int main() 
{
    float a;
    scanf("%f",&a);
    printf("%.f",a);  //%.f不显示小数
    return 0;
}