#include <bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; double d=(a+b+c)/3.0; printf("%.2f",d); }