**Before watching this make sure that you’ve tried enough**
#include<stdio.h> int main(){ double A, B, MEDIA; scanf("%lf %lf", &A, &B); A = A * 3.5; B = B * 7.5; MEDIA = (A B) / 11; printf("MEDIA = %0.5lf\n", MEDIA); return 0; }
If this solution helped you, please share this with your friends.