Console.WriteLine("This test was total 20 marks")
Console.WriteLine("Please enter your score")
Score = Console.ReadLine()
Dim Percentage As Integer
Percentage = Score/20*100
Console.WriteLine("Congratulations, you have gotten A*")
Else If Percentage < 88 And Percentage > 76 Then
Console.WriteLine("Well done, you have gotten A")
Else If Percentage < 76 And Percentage > 64 Then
Console.WriteLine("You have gotten B")
Else If Percentage < 64 And Percentage > 47
Console.WriteLine("You have gotten C")
Console.WriteLine("I am so sorry but you have failed your test")
Console.WriteLine("Your percentage is "&Percentage)