5 lines
96 B
Text
5 lines
96 B
Text
while True do begin
|
|
var num := RandomInt(20);
|
|
PrintLn(num);
|
|
if num=10 then Break;
|
|
end;
|