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