public static void Main()
Console.Write("Enter the student number");
student= Convert.ToUInt32(Console.ReadLine());
Console.Write("Enter the total time in minutes:");
time= Convert.ToInt32(Console.ReadLine());
Console.Write("Enter the grade out (out of 40): ");
grade= Convert.ToInt16(Console.ReadLine());
Console.WriteLine(" {0} took {1} hour(s) and {2} minutes to complete the assessment", student, hours, minutes );
Console.WriteLine("Grade: {0:P}", grade/40.0);