0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00
Baoshuo Ren 2021-08-03 13:52:08 +08:00 committed by Baoshuo Ren
parent d25d1877a5
commit 0e8b37a556
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

11
AcWing/610/610.cpp Normal file
View File

@ -0,0 +1,11 @@
#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;
}