Imports System
Public Module Module1
Public Sub Main()
dim width = 12
dim length = 3
dim area =width + length
console.writeline("the result of multplcation is {0}",area)
End Sub
End Module