#inclde<stdio.h>
int main()
{
    float value;
    scanf("%f",&value);
    prinf("%.6f\n",value);
    return 0;
}