RosettaCodeData/Task/A+B/BASIC/a+b-4.basic
2020-02-17 23:21:07 -08:00

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])