# include<cstdio> using namespace std; int main(){ double ch,ma,en; scanf("%lf%lf%lf",&ch,&ma,&en); printf("%.2lf",(ch+ma+en)/3); return 0; }