#include <stdio.h>

int main() {
   float x;
   scanf("%f",&x);
   printf("%.4f\n",x);
   return 0;
}