#include<studio.h>
int main()
{
    float m;
    scanf("%f",&m);
    printf("%0.6f" ,m);
    return 0;
}