#include<iostream> using namespace std; int main(){ char a[10]; double b,c; scanf("%s %lf %lf",a, &b, &c); printf("TOTAL = R$ %.2lf",b + c*0.15 ); return 0; }