Imports System
Public Module Module1
Public Sub Main()
Dim input(5) as integer
Dim total as integer
for i = 1 to 5
input(i) = console.ReadLine()
total = input(i) + total
next
console.writeline("Input Total = " & total)
console.writeline("Input Average = " & total / 5)
End Sub
End Module