#include int main(){ int a, b, c; float averege; scanf("%d%d%d", &a, &b, &c); averege = (a + b + c) / 3.; printf("%.2f\n", averege); return 0; }