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