#include <bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; int d=a+b+c; double ave; ave=d*1.0/3; cout<<fixed<<setprecision(3)<<ave; }