// 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");
        return 0;
    }
    int i,val;
    for(i=0;i<temp;i++)
    scanf("%d",&val);
    d+=val;}
        printf("%.2f",d/temp);
        return 0;
}