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