public static void Main()
Console.Write("Input student id : ");
string id = Console.ReadLine();
Console.Write("Input student name : ");
string name = Console.ReadLine();
Console.Write("Input mid - term score : ");
int mid = int.Parse(Console.ReadLine());
Console.Write("Input final score : ");
int final = int.Parse(Console.ReadLine());
Console.WriteLine("- - - - - - - - - - - - - - - - - - - - - - - - -");
Console.WriteLine("STUDENT\t\t : {0} ({1})",name,id);
Console.WriteLine("GET SCORE \t : {0} ( {1} + {2} )",total,mid,final);