6 lines
66 B
Text
6 lines
66 B
Text
|
|
U8 i = 0;
|
||
|
|
do {
|
||
|
|
i++;
|
||
|
|
Print("%d\n", i);
|
||
|
|
} while (i % 6 != 0);
|