#include<bits/stdc++.h>
using namespace std;
int main()
{
    double v;
    cin>>v;
    cout<<fixed<<setprecision(12)<<v;
    return 0;
}