using namespace std; int main(){ double A,B,MEDIA; cin>>A; scanf(“%lf”,&B); MEDIA=(3.5A+7.5B)/11; printf(“MEDIA = %.5lf”,MEDIA); return 0; }