//想定っぽい解き方 #include #include using namespace std; int main() { long long a; cin >> a; a *= 108; cout << a/100 << "." << a%100 << endl; return 0; }