public static void Main()
Console.WriteLine("Please enter a whole number");
string strInput = Console.ReadLine();
bool IsValidNumber = Int32.TryParse(strInput, out Score);
if(IsValidNumber == false)
Console.WriteLine("Please enter a valid number");
Console.WriteLine("===============================");
Console.WriteLine("You get A");
Console.WriteLine("Please tell me your major");
string strInput2 = Console.ReadLine();
Console.WriteLine("Congrats!");
Console.WriteLine("You get B");
Console.WriteLine("You get C");
Console.WriteLine("You get D");
Console.WriteLine("You get F");