#include using namespace std; int main() { int N; if(scanf("%d", &N) == EOF) { return 0; } printf("%.2lf\n", (double)N * 1.08); return 0; }