#include int main() { long long d; std::cin >> d; double tax = d * 0.08; std::cout << std::fixed << d + tax << std::endl; return 0; }