Ответ:

Ответ:

Var i,a,b:integer;

Begin

Read(a,b);

For i:=a to b do begin

Writeln(i*i);

Writeln(i*i*i);

End;

End.