var a,s: integer;
begin
s:=1;
repeat
write('Введите число: ');
readln(a);
if (a>0) then s:=s*a;
until a=1;
writeln('Произведение положительных чисел: ',s);
end.
var a,s: integer;
begin
s:=1;
repeat
write('Введите число: ');
readln(a);
if (a>0) then s:=s*a;
until a=1;
writeln('Произведение положительных чисел: ',s);
end.