public static void Main()
int bluePins, goldPins, greenPins, redPins, totalPins;
bluePins = greenPins - 5;
totalPins = bluePins + goldPins + greenPins + redPins;
Console.WriteLine("+++++++++++++++++++++++++++++++++++++++");
Console.WriteLine("The number of blue pins is " +bluePins+ ".");
Console.WriteLine("The number of gold pins is " +goldPins+ ".");
Console.WriteLine("The number of green pins is " +greenPins+ ".");
Console.WriteLine("The number of red pins is " +redPins+ ".");
Console.WriteLine("The total number of pins is " +totalPins+ ".");
Console.WriteLine("+++++++++++++++++++++++++++++++++++++++");