// editor2
#include<stdio.h>
int main()
{ 
    float num;
    scanf("%f",&num);
    printf("%0.6",num);
    return 0;
}