#include using namespace std; typedef long long ll; int main(){ double n; cin >> n; n *= 108; n /= 100; printf("%.2f\n", n); return 0; }