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