#include<bits/stdc++.h> using namespace std; int main(){ double a,b,c; cin>>a>>b>>c; printf("MEDIA = %.1lf",(a*2+b*3+c*5)/10); }