#include<bits/stdc++.h> using namespace std; int main(){ double a,b,c,d,e; b=3.0; scanf("%lf%lf%lf",&a,&d,&e); c=(a+d+e)/b; printf("%.2f",c); return 0; }