Imports System
Public Module Module1
Public Sub Main()
Console.WriteLine("the schools are ")
dim HarareSchools(,) as string = {{"Arundel", " " , " " , "Convert" } , { " " , "Chisipite", " " , " " } , { " " , " " , " " , " " } , { "Gateway" , " " , "Heritage" , " " } , { " " , " ", " " , " " } }
console.WriteLine(HarareSchools(0,0))
console.WriteLine(HarareSchools(0,3))
console.WriteLine(HarareSchools(1,1))
console.WriteLine(HarareSchools(3,0))
console.WriteLine(HarareSchools(3,2))
End Sub
End Module