public static void Main()
double a, b, c, d, e, f, g, h;
Console.Write("Wellcome! ");
Console.WriteLine("What´s your name?");
name = Console.ReadLine();
Console.WriteLine("Nice to meet you " + name + "!");
Console.WriteLine("I will help you calculating your average and tell you if you passed or not.");
Console.WriteLine("What's your Chemistry grade?");
a = int.Parse(Console.ReadLine());
Console.WriteLine("What's your I.C.S grade?");
b = int.Parse(Console.ReadLine());
Console.WriteLine("What's your Ethics grade?");
c = int.Parse(Console.ReadLine());
Console.WriteLine("What's your T.L.R grade?");
d = int.Parse(Console.ReadLine());
Console.WriteLine("What's your Tech grade?");
e = int.Parse(Console.ReadLine());
Console.WriteLine("What's your English grade?");
f = int.Parse(Console.ReadLine());
Console.WriteLine("What's your Math grade?");
g = int.Parse(Console.ReadLine());
Console.WriteLine("What's your D.H.P grade?");
h = int.Parse(Console.ReadLine());
sum = a + b + c + d + e + f + g + h;
Console.WriteLine("Very Good! You passed with an average of " + av + "!!");
Console.WriteLine("I’m sorry, you failed with an average of " + av + "!!");
Console.WriteLine("Thank you for using our service, see you next one!");