7 lines
164 B
Text
7 lines
164 B
Text
|
|
input "Enter one positive integer: " i
|
||
|
|
input "Enter other positive integer: " j
|
||
|
|
dim a(i, j)
|
||
|
|
a(i, j) = i * j
|
||
|
|
print "a(", str$(i), ",", str$(j), ") = ", a(i, j)
|
||
|
|
exit
|