include<bits/stdc++.h>

using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
double d;
d=(a+b+c)/3.0;
printf("%.6lf",d);
return 0;
}