using System;
public class Program
{
public static void Main()
for (var x = 'a'; x < 'z'; x ++)
Console.WriteLine($"{x} is {(int) x}");
}