using System;
public class Program
{
public static void Main()
string test = "Hello people";
char firstLetter = test[0];
bool answer = Char.IsUpper(firstLetter);
Console.WriteLine(answer);
}