using System; class a { public static void Main() { for (int y = 0; y < 25; y++) { for (int x = 0; x < 25; x++) { Console.Write(" {0}", Convert.ToChar(65 + Math.Abs(x - 12) + Math.Abs(y - 12))); } Console.WriteLine(); } } }