6 lines
236 B
Text
6 lines
236 B
Text
Public Sub Main()
|
|
Dim sInput As String = InputBox("Input 2 numbers seperated by a space", "A + B")
|
|
|
|
Print Split(sInput, " ")[0] & " + " & Split(sInput, " ")[1] & " = " & Str(Val(Split(sInput, " ")[0]) + Val(Split(sInput, " ")[1]))
|
|
|
|
End
|