Imports System
Public Module Module1
Public Sub Main()
dim StudentMarks() as integer = {57, 66, 75, 98, 22, 35, 42, 83, 31, 100}
For I = 0 to 9
console.WriteLine(StudentMarks(I))
Next I
End Sub
End Module