#include<iostream> using namespace std; int main(){ double x; cin >> x; cout << fixed << setprecision(6) << x << "\n"; return 0; }