#include<bits/stdc++.h> using namespace std; int main() { string a; double b,c; cin>>a>>b>>c; printf("TOTAL = R$ %.2lf",b+c*0.15); return 0; }