public static void Main()
int lark, rock, gray, cardinals, spotted, blue, total;
total = blue + cardinals + gray + rock + spotted + lark;
Console.WriteLine("============================================================");
Console.WriteLine("There are " + lark + " Lark Sparrows.");
Console.WriteLine("There are " + rock + " Rock Wrens.");
Console.WriteLine("There are " + gray + " Gray Kingbirds.");
Console.WriteLine("There are " + cardinals + " Cardinals.");
Console.WriteLine("There are " + spotted + " Spotted Redshank Birds.");
Console.WriteLine("There are " + blue + " Blue Jays.");
Console.WriteLine("There are a total of " + total + " birds in the Zoo's Exhibit.");
Console.WriteLine("==========================================================");