input "Enter first array dimension "; a
input "Enter second array dimension "; b
dim array( a, b)
array( 1, 1) = 123.456
print array( 1, 1)
end