public static void Main()
Console.WriteLine("Welcome to St. David's Guidance Department!");
Console.WriteLine("Do you need assistance in finding your guidance Counsellor? (Y/N)");
string need = Console.ReadLine().Trim().ToUpper();
{Console.WriteLine("Good!Let's go to find your guidance counselor.");}
{Console.WriteLine("If you have any questions, feel free to ask!");
Console.WriteLine("Sorry, please enter valid characters!");
Console.WriteLine("Are you an international student? (Y/N)");
string international = Console.ReadLine().Trim().ToUpper();
if (international == "Y")
counselor = "Ms.Kueneman";
Console.WriteLine("Please enter your last name: ");
string lastName = Console.ReadLine().Trim();
if (string.IsNullOrEmpty(lastName))
Console.WriteLine("Sorry, please enter a valid last name!");
string firstLetter = lastName.Substring(0, 1).ToUpper();
if (string.Compare(firstLetter, "A") >= 0 && string.Compare(firstLetter,"E") <= 0)
counselor = "Ms.Dietrich";}
else if (string.Compare(firstLetter,"F") >= 0 && string.Compare(firstLetter,"O") <= 0)
else if (string.Compare(firstLetter,"P") >= 0 && string.Compare(firstLetter,"S") <= 0)
{counselor = "Ms.Kueneman";}
else if (string.Compare(firstLetter,"T") >= 0 && string.Compare(firstLetter,"Z") <= 0)
{counselor = "Ms.Lehmann";}
{Console.WriteLine("Sorry, please enter a valid last name!");
Console.WriteLine("Your guidance counselor is: " + counselor);