#include <stdio.h>

int main() {
    double d = 0;
    scanf("%lf",&d);
    printf("%.0f", d);
    return 0;
}