#include <stdio.h>

int main() {
    float x;
    scanf("%f",&x);
    printf("%.3f",x);
    return 0;
}