RosettaCodeData/Task/A+B/BASIC256/a+b.basic
2023-07-01 13:44:08 -04: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])