#include<stdio.h>
int main(){
    float value;
    scan("%f",&value);
    printf("%.6f ",value);
    return 0;
}