6 lines
65 B
Text
6 lines
65 B
Text
var i := 0;
|
|
|
|
repeat
|
|
Inc(i);
|
|
PrintLn(i);
|
|
until i mod 6 = 0;
|