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