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