Dim studentmark As Integer
Console.WriteLine("Enter the maximum mark:")
maxmark = Console.ReadLine()
Console.WriteLine("Enter the student's mark:")
studentmark = Console.ReadLine()
percent = studentmark / maxmark
Console.WriteLine("Student got an A*")
Console.WriteLine("Student got an A")
Console.WriteLine("Student got a B")
Console.WriteLine("Student got a C")
Console.WriteLine("Student got a U")