#include<iostream> #include<iomanip> using namespace std; int main() { double x; cin>>x; cout<<fixed<<setprecision(12)<<x<<endl; return 0; }