using namespace std; int main(void) { double a,b; scanf(“%lf%lf”,&a,&b); printf(“MEDIA = %.5lf”,(0.35a+0.75b)/(0.35+0.75)); return 0; }