//PascalABC.NET v3.3 1633
begin
var a,b: integer;
repeat
a:=ReadInteger('Введите A: ');
b:=ReadInteger('Введите B: ');
if not (b >= a) then writeln('Неверный ввод! B должно быть больше или равно A!');
until b >= a;
while a <= b do</p>
begin
writeln(' '+a+'^2 = '+sqr(a));
a += 1;
end;
end.