#include int main(void){ long double val = 0; scanf("%Lf",&val); long double tax = val * 0.08; printf("%.2Lf",val + tax); }