public static void Main()
Console.WriteLine("Hello World");
Console.WriteLine("Insert math mark");
int math = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Insert phy");
int phy = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Insert chem");
int chem = Convert.ToInt32(Console.ReadLine());
total = math + phy + chem;
if((math >= 65 && phy >=50 && math >=55)|| total >= 180 ){
Console.WriteLine("The candidate is eligible for admission.");
Console.WriteLine("The candidate is NOT eligible for admission.");