public static void Main()
Console.WriteLine("Write your final grade (0-10) and I'll tell you if you passed or failed.");
grade = int.Parse(Console.ReadLine());
Console.WriteLine("Oh no! You failed!");
Console.WriteLine("Awesome! You passed.");
Console.WriteLine("It is impossible to get that grade. Please tell me the truth.");