#include using namespace std; typedef long long ll; int main(){ double n; cin >> n; n *= 108; n /= 100; cout << n << endl; return 0; }