using System;
public class Program
{
public static void Main()
for (int i = 65; i <= 90; i++)
Console.Write("{0} ", (char)i, i );
}