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