public static void Main()
Console.WriteLine("How many birds are in location 1?");
int location1 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("How many birds are in location 2?");
int location2 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("How many birds are in location 3?");
int location3 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("How many birds are in location 4?");
int location4 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("How many birds are in location 5?");
int location5 = Convert.ToInt32(Console.ReadLine());
int [] birds = new int [5];
for(int i = 0; i < 5; i ++)
Console.WriteLine(birds[i] * 2);
double adverage = (((location1+location2+location3+location4+location5)*2)/5);
Console.WriteLine(adverage);
Console.WriteLine("There are more than 25 birds in location 1");
Console.WriteLine("There are more than 25 birds in location 2");
Console.WriteLine("There are more than 25 birds in location 3");
Console.WriteLine("There are more than 25 birds in location 4");
Console.WriteLine("There are more than 25 birds in location 5");