program bai1;
uses crt;
var n,i:integer;
begin
clrscr;
write('Nhap n: '); readln(n);
if n<2 then write('Khong co')
else
begin
write('Cac so le nho hon ',n,' la: ');
for i:=1 to n do
if i mod 2=1 then write(i,' ');
end;
readln
end.
program bai2;
uses crt;
var n,i:integer;
begin
clrscr;
write('Nhap n: '); readln(n);
write('Cac uoc cua ',n,' la: ');
for i:=1 to n do
if n mod i=0 then write(i,' ');
readln
end.