using System;
public class Program
{
public static void Main()
// Set the Foreground color to blue
Console.ForegroundColor = ConsoleColor.Blue;
// Display current Foreground color
Console.WriteLine("Changed Foreground Color: {0}",
Console.ForegroundColor);
// Display the default Foreground color
Console.WriteLine("Default Foreground Color: {0}",
}