#include<iostream> #include<cstdio> using namespace std; int main() { int C,M,E; scanf("%d%d%d",&C,&M,&E); printf("%.2f\n",(C+M+E)/3.0); return 0; }