👤

Sa se afiseze toti divizorii comuni a doua numere

Răspuns :

var i,x,y: integer;
Begin
writeln('Introduceti numerele:');
readln(x,y);
writeln('Divizori comuni:');
for i:=1 to MaxInt do
if (x mod i=0) and (y mod i=0) then writeln(i);
End.