文件目录

#include <bits/stdc++.h>
using namespace std;

int main()
{
    double f;
    cin >> f;
    printf("%.12lf", f);
    return 0;
}