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