#include int main(void){ int price; double tax = 0.08; scanf("%d", &price); printf("%.2f", price + price*tax); return 0; }