#include<iostream>
#include<iomanip>

int main() {
	long long d;
	std::cin >> d;

	double tax = d * 0.08;
	std::cout << std::fixed << std::setprecision(2) << d + tax << std::endl;
	return 0;
}