#include<stdio.h>
fload main()
{
    float num;
    scanf("%f",&num);
    printf("%.6f",num);
    return 0;
}