#include <iostream>
#include <cstdio>
#include <string>
#include <cmath>
using namespace std;
int main()
{
char x[10];
double a,b;
cin>>x>>a>>b;//也可以scanf("%s %lf %lf", x, &a, &b);%c输入函数只会对一个字节空间赋值. 而%s会一直赋值,直到输入中遇到空白字符为止;scanf里的x不加&是因为数组名就是指向数组首地址的指针。
printf("TOTAL = R$ %.2lf",a+0.15*b);
return 0;
}