Link 3 Fix
AI-enhanced title
var
data : integer;
begin
writeln ('');
data := 1;
repeat
data := data + 1until data >= 9;
end.