using System;
public class Program
{
public static void Main()
for( char i = 'a' ; i <='z' ; i++)
Console.WriteLine(i);
}