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