Var n,m,s: integer;
begin
write('Введите N: ');
readln(n);
if ((n>=1) and (n<=1000)) then<br>begin
write('Введите M: ');
readln(m);
if (m<>0) then
begin
s:=sqr(n div m);
writeln(s);
end else writeln('Введите другое M');
end else writeln('Введите другое N');
readln;
end.