using System;
public class Program
{
public static void Main()
string greet = "Hello";
char firstLetter = greet[0];
Console.WriteLine(firstLetter);
}