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