Write a program that takes two integers A and B and prints the squares of all natural numbers in the range A through B.

var a, b, c: integer;
begin
writeln (‘Enter 2 integers’);
readln (a, b);
for c: = a to b do
begin
writeln (c, ‘*’, c, ‘=’, sqr (c));
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.