//面倒くさい方の解き方(自信なし) #include #include using namespace std; int main(){ double a; cin >> a; a *= 1.08; a += 1e-9; printf("%.2f\n", a); return 0; }