#include #include using namespace std; int main() { double num; cin >> num; num *= 1.08; cout << fixed << setprecision(2) << num << endl; }