#include #include typedef long long ll; int main(void) { std::cin.tie(0); std::ios::sync_with_stdio(false); std::cout << std::fixed << std::setprecision(3); ll d; std::cin >> d; std::cout << d * 1.08 << std::endl; return 0; }