Program vct;
uses crt;
var
m,n,i:integer;
begin
writeln('moi nhap so n '); readln(n);
writeln('moi nhap so m '); readln(m);
for i:=m to n do write(i);
readln;
end.
program bai1;
var m,n,s:longint;
begin
write('M= ');readln(m);
write('N= ');readln(n);
for k:=(m+1) to (n-1) do
begin
s:=0;
for i:=1 to n do
if (k mod i=0) then s:=s+1;
if s=2 then write(k,' ');
end;
readln
end.