6 lines
79 B
Text
6 lines
79 B
Text
|
|
var val = 0;
|
||
|
|
do {
|
||
|
|
val += 1;
|
||
|
|
writeln(val);
|
||
|
|
} while val % 6 > 0;
|