#include <stdio.h>

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