#include<bits/stdc++.h> using namespace std; string s; double x,y; int main() { cin>>s>>x>>y; cout<<"TOTAL = R$ "<<fixed<<setprecision(2)<<0.15*y+x; return 0; }