#include<iostream> using namespace std; int main(){ int A,B,C; float a,b,c,d; cin>>A>>B>>C; a=A*0.2; b=B*0.3; c=C*0.5; d=a+b+c; cout<<d; }