5 lines
122 B
Text
5 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])
|