#include <stdio.h>

int main() 
{
    double test(int x);
    int a, b;
    scanf("%d",&a);
    double z;
    z=(double)test(a);
    printf("%.1f",z);
    return 0;
}
double test(int x)
{
    int i;
    int y;
    double c=0,e=0;
    for(i=0;i<x;i++)
    {
        scanf("%d",&y);
        if(y<=60)
        {
            c=c+0.1;
        }
        if(y>60)
        {
            e=e+0.2;
        }
    }
    return c+e;
}