mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 13:18:47 +00:00
12 lines
211 B
C++
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;
|
|
}
|