#include using namespace std; int main() { double d; cin >> d; double ans = d + d * 8 / 100; printf("%.2lf", ans); return 0; }