using System;
public class Program
{
public static void Main()
int i , count=0 ;
double mark ;
for(i=1;i<=8;i++)
mark=double.Parse(Console.ReadLine());
if ( mark > 75 && mark < 85 )
count++;
}
Console.WriteLine(" عدد الطلاب الذين حصلوا على علامة اعلى من 85 هم {0} ", count );