#include <stdio.h> main() { int a,b,c; double avg = 0.0; scanf("%d%d%d",&a,&b,&c); avg = (1000*a + 1000*b + 1000*c) / 3; printf("%.3f",avg*0.001); }