var x, y, res: real;
label back;
begin
back:
Readln(x); Readln(y);
if x > y then res := x / y else res := y / x;
if res < 1 then goto back;
Writeln(res);
end.
Объяснение:
var x, y, res: real;
label back;
begin
back:
Readln(x); Readln(y);
if x > y then res := x / y else res := y / x;
if res < 1 then goto back;
Writeln(res);
end.
Объяснение: