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