#include #include int main() { long double price; std::cin >> price; price *= 1.08; std::cout << std::setprecision(10) << price << std::endl; }