7 lines
164 B
Text
7 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])
|
||
|
|
)
|