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