Imports System
Public Module Module1
Dim A as integer = 0 'this is declaring an interger
Dim B as integer = 0
Dim total as integer = 0
Public Sub Main()
Console.WriteLine("What is your first number?")
A = console.readline()
Console.WriteLine("your second number is ?")
B = console.readline()
total = A + B
Console.writeline("your total is " & total) 'this adds what you wrote on both the numbers
End Sub
End Module