#include #include int main() { float a, b; scanf("%f %f", &a, &b); float avg = (a*3.5 + b*7.5)/11; printf("MEDIA = %0.5f\n", avg); return 0; }