// editor5
#include<stdio.h>
#include<math.h>
int main()
{
    int temp;
    float d;
    int a,b,c;
    scanf("%d",&temp);
    scanf("%d %d %d", &a,&b,&c);
    if(temp<=0){
        printf("No readings provided");
    }
    {
     else   
     {
        d=(a+b+c)/3;
        printf("%.2f",d);
    }
    return 0;
}
}