public static void Main()
int greenC, blueC, yellowC, redC, totalC;
totalC = blueC + redC + greenC + yellowC;
Console.WriteLine("==============================================");
Console.WriteLine("The company had " + greenC + " green chairs");
Console.WriteLine("The company had " + yellowC + " yellow chairs");
Console.WriteLine("The company had " + blueC + " blue chairs");
Console.WriteLine("The company had " + redC + " red chairs");
Console.WriteLine("The company had a total of "+totalC+" chairs");
Console.WriteLine("==============================================");