//PascalABC.NET 3.2 сборка 1318
Var
f:text;
n,sum,i:integer;
begin
assign(f,'Input.txt');
reset(f);
read(f,n);
close(f);
for i:=1 to n do
if n mod i=0 then sum:=sum+i;
assign(f,'Output.txt');
rewrite(f);
for i:=1 to sum do
if (sum mod i=0) and (odd(i)) then write(f,inttostr(i)+' ');
close(f);
end.
Пример содержимого Input.txt:
4
Пример содержимого Output.txt:
1 7