#include<bits/stdc++.h> using namespace std; int main (){ double a,b,c; cin>>a>>b>>c; a=a*0.2+b*0.3+c*0.5; printf("MEDIA = %.1lf",a); return 0; }