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