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