Print an array with 25 elements, filled with random numbers in the range from 0 to 100. Print it without explanation, after 2 spaces.

Pascal:
const
n = 25;
var
a: array [1..n] of Integer;
i: Integer;
begin
Randomize;
for i: = 1 to n do
begin
a [i]: = Random (1, 50);
Write (a [i], ”);
end;
end.



One of the components of a person's success in our time is receiving modern high-quality education, mastering the knowledge, skills and abilities necessary for life in society. A person today needs to study almost all his life, mastering everything new and new, acquiring the necessary professional qualities.