public static void Main()
int green, red, blue, yellow, totalChairs;
totalChairs = 3 * 5 + 5 + 2 + 6 + 3 * 5;
Console.WriteLine("=========================================================");
Console.WriteLine("The company had " + green + " chairs.");
Console.WriteLine("The company had " + yellow + " yellow chairs.");
Console.WriteLine("The company had " + blue + " blue chairs.");
Console.WriteLine("The company had " + red + " red chairs.");
Console.WriteLine("The company had a total of " + totalChairs + " chairs.");
Console.WriteLine("========================================================");