using System;
using System.Linq;
public class Program
{
public static void Main()
float [] ages = {36,17,15,16,15,14,15,15,14,15,14,14,16,19,15,18,15,17,14,14,17,15,16,16};
Console.WriteLine(" The ages of people in Ms.Durnings 7th period class are: ");
for(int i= 0; i<ages.Length; i++)
{ Console.Write(ages[i]+ " ");}
Console.WriteLine();
Console.WriteLine("\nThe average of the ages in the clas is " + ages.Average());
}