文件目录

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

int main()
{
    float f;
    cin >> f;
    printf("%.3f", f);
    return 0;
}