public static void Main()
Console.WriteLine("Hi!");
Console.WriteLine("What's your name?");
name = Console.ReadLine();
Console.WriteLine("Nice to meet you " + name + "!");
Console.WriteLine("I will help you with your average and tell you if you passed or not.");
Console.WriteLine("Please tell me your Math grade:");
math = int.Parse(Console.ReadLine());
Console.WriteLine("Please tell me your Literature grade:");
lit = int.Parse(Console.ReadLine());
Console.WriteLine("Please tell me your Physics grade:");
phy = int.Parse(Console.ReadLine());
Console.WriteLine("Please tell me your History grade:");
his = int.Parse(Console.ReadLine());
ave = (math + lit + phy + his)/4;
Console.WriteLine("Very Good! You passed with an average of: " + ave);
Console.WriteLine("I’m sorry, you failed with an average of: " + ave);
Console.WriteLine("See you soon!");