public static void Main()
Console.WriteLine("Hello World");
int blueChairs, redChairs, greenChairs, yellowChairs, total;
total = blueChairs + redChairs + greenChairs + yellowChairs;
Console.WriteLine("=================================================================================================");
Console.WriteLine("The company had " + greenChairs + " green chairs.");
Console.WriteLine("The company had " + yellowChairs + " yellow chairs.");
Console.WriteLine("The company had " + blueChairs + " blue chairs.");
Console.WriteLine("The company had " + redChairs + " red chairs.");
Console.WriteLine("The company had a total of " + total + " chairs.");
Console.WriteLine("=================================================================================================");