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