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