#include<bits/stdc++.h> using namespace std; int main(){ long double a,b,c; cin>>a>>b>>c; cout<<fixed<<setprecision(2)<<(a+b+c)/3; return 0; }