4 lines
122 B
Text
4 lines
122 B
Text
dim a(2)
|
|
input "Enter two numbers separated by a space?", t$
|
|
a = explode(t$," ")
|
|
print t$ & " " & int(a[0]) + int(a[1])
|