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