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