public static void Main()
Console.Write("Enter the name of your college: ");
string collegeName = Console.ReadLine();
Console.Write("Please enter the name of your mascot: ");
string mascotName = Console.ReadLine();
Console.Write("What year did you graduate high school? ");
string hsgradyear = Console.ReadLine();
Console.WriteLine(collegeName.ToUpper());
Console.WriteLine(collegeName.Substring(0, 3));
Console.WriteLine("Does your school start with a G?");
Console.WriteLine(collegeName.StartsWith("G"));
Console.WriteLine("Does your school end with College?");
Console.WriteLine(collegeName.EndsWith("College"));
Console.WriteLine("Your password is: A" + mascotName.Substring(0,2) + collegeName.Substring(0,3) + hsgradyear);