public static void Main()
Console.WriteLine("Please enter the name of your college");
string collegeName = Console.ReadLine();
Console.WriteLine("Please enter the name of your mascot:");
string mascot = Console.ReadLine();
Console.WriteLine("What year did you graduate high school?");
string year = Console.ReadLine();
Console.WriteLine(collegeName);
string college = collegeName;
Console.WriteLine("First three letters of your college:" + ' ' + college.Substring(0, 3));
Console.WriteLine("Does your school name start with G?" + ' ' + college.StartsWith("G"));
Console.WriteLine("Does your school name end with College?" + ' ' + college.EndsWith("College"));
Console.WriteLine("Suggested Password:" + ' ' + "A" + mascot.Substring(0, 2) + college.Substring(0, 3) + year);