#include<stdio.h> int main() { double a, b, c; scanf("%lf%lf%lf", &a, &b, &c); double avg = (a + b + c) / 3; printf("%.3f",avg); return 0; }