7 lines
72 B
Text
7 lines
72 B
Text
|
|
mutable x = 0;
|
||
|
|
do
|
||
|
|
{
|
||
|
|
x++;
|
||
|
|
WriteLine($"$x");
|
||
|
|
} while (x % 6 != 0)
|