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