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