This repository has been archived on 2024-12-25. You can view files and clone it, but cannot push or open issues or pull requests.

15 lines
224 B
ObjectPascal

program mini;
uses crt;
var
x,y: integer;
min: integer;
begin
repeat
write('Введите x и y: ');
readln(x,y);
if x<y then
min := x
else min := y;
writeln('Минимум = ',min);
until x=255
end.