int main() { char d[10]; float a,b,c; scanf(“%s%f%f”,&d,&a,&b); c=a+b*(0.15); printf(“TOTAL = R$ %.2f”,c); return 0; }