0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00
Baoshuo Ren 2021-09-15 20:01:37 +08:00 committed by Baoshuo Ren
parent c10aad441a
commit 6937a91b97
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

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

@ -0,0 +1,11 @@
#include <bits/stdc++.h>
using namespace std;
double a, b;
int main() {
cin >> a >> b;
cout << "MEDIA = " << fixed << setprecision(5) << (a * 3.5 + b * 7.5) / 11 << endl;
return 0;
}