public static void Main()
Console.WriteLine("Input Math Score");
int math = Convert.ToInt16(Console.ReadLine());
Console.WriteLine("Input English Score");
int eng = Convert.ToInt16(Console.ReadLine());
Console.WriteLine("Input Algoritma Score");
int algo = Convert.ToInt16(Console.ReadLine());
int avg = ((math + eng + algo) /3 );
Console.WriteLine("You are passed");
Console.WriteLine("You are failed");
Console.WriteLine("You are failed");