#include<iostream.h>
int main()
{
    float f;
    scanf("%f",f);
    printf("%.6f",f);
    return 0;
}