6 lines
164 B
Text
6 lines
164 B
Text
main:(
|
|
print("Input two positive whole numbers separated by space and press newline:");
|
|
[read int,read int] INT array;
|
|
array[1,1]:=42;
|
|
print (array[1,1])
|
|
)
|