#include<iostream> using namespace std; int main() { float a,b; cin >> a >> b; printf("MEDIA = %.5f",(a*3.5 + b*7.5)/11); return 0; }