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.ToUpper());
Console.WriteLine("First three letters of your college:");
Console.WriteLine(collegeName.Substring(0,3));
Console.WriteLine("Does your school name start with G?");
Console.WriteLine(collegeName.StartsWith("G"));
Console.WriteLine("Does your school name end with College?");
Console.WriteLine(collegeName.EndsWith("College"));
Console.WriteLine("Suggested Password:");
Console.WriteLine("A"+ mascot.Substring(0,2)+ collegeName.Substring(0,3) + year);