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