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