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