11 lines
128 B
Text
11 lines
128 B
Text
|
|
U16 a, b;
|
||
|
|
while (1) {
|
||
|
|
a = RandU16 % 20;
|
||
|
|
Print("%d\n", a);
|
||
|
|
|
||
|
|
if (a == 10) break;
|
||
|
|
|
||
|
|
b = RandU16 % 20;
|
||
|
|
Print("%d\n", b);
|
||
|
|
}
|