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