#include using namespace std; int main() { int64_t d; cin >> d; d *= 108; cout << d / 100 << "." << setw(2) << d % 100 << endl; return 0; }