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