using System.Collections.Generic;
using System.Threading.Tasks;
static void Main(string[] args)
var n = int.Parse(Console.ReadLine());
for (int i = 0; i < n; i++)
var points = double.Parse(Console.ReadLine());
if (points > 22.5 && points <= 40.5)
if (points > 40.5 && points <= 58.5)
if (points > 58.5 && points <= 76.5)
if (points > 76.5 && points <= 100)
Console.WriteLine("{0:f2}% poor marks",(bad/n)*100 );
Console.WriteLine("{0:f2}% satisfactory marks", (middle/n)*100);
Console.WriteLine("{0:f2}% good marks", (good / n) * 100);
Console.WriteLine("{0:f2}% very good marks", (verygood / n) * 100);
Console.WriteLine("{0:f2}% excellent marks",(excellent / n) * 100 );