0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 00:25:24 +00:00
OI-codes/AcWing/610/610.cpp

12 lines
211 B
C++

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