using namespace std;
int main() { double a, a1 = 3.5, b, b1 = 7.5; cin >> a >> b; printf(“MEDIA = %.5lf”, (a * a1 + b * b1)/(a1 + b1)); return 0; }