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