public static void Main()
Console.WriteLine("Hi, what's your name?");
Console.WriteLine("Nice to meet you " + A + "");
Console.WriteLine("I Will help you with you average and tell you if you passed or not.");
Console.WriteLine("How much did you get in math?");
m = int.Parse(Console.ReadLine());
Console.WriteLine("How much did you get in literature?");
l = int.Parse(Console.ReadLine());
Console.WriteLine("How much did you get in physics?");
p = int.Parse(Console.ReadLine());
Console.WriteLine("How much did you get in history?");
h = int.Parse(Console.ReadLine());
Console.WriteLine("Very Good! You passed with an average of " + x );
Console.WriteLine("I’m sorry, you failed with an average of " + x );
Console.WriteLine("Byeee");