Imports System
Public Module Module1
Public Sub Main()
dim a , b , c , d ,e ,f , t as integer
Console.WriteLine("Hello please enter each score") ' i have asked the user to enter the scores of the overs
a = console.ReadLine()
b = console.ReadLine()
c = console.readline()
d = console.ReadLine()
e = console.ReadLine()
f = console.ReadLine()
t = a + b + c + d + e + f
console.writeline("the total score is " & t)
End Sub
End Module