14 lines
213 B
Text
14 lines
213 B
Text
write "Number of rows: "
|
|
nrows = number input
|
|
print nrows
|
|
write "Number of columns: "
|
|
ncols = number input
|
|
print ncols
|
|
#
|
|
len a[][] nrows
|
|
for i to nrows
|
|
len a[i][] ncols
|
|
.
|
|
a[1][1] = 11
|
|
print a[1][1]
|
|
len a[][] 0
|