#include <iostream> using namespace std; int main(){ string s;///注意C++中的字符串类型 double x,y; cin>>s>>x>>y; printf("TOTAL = R$ %.2lf",x+0.15*y); return 0; }