11 lines
114 B
Text
11 lines
114 B
Text
|
|
while true
|
||
|
|
{
|
||
|
|
a = random[0,19]
|
||
|
|
print["$a "]
|
||
|
|
if a == 10
|
||
|
|
break
|
||
|
|
|
||
|
|
b = random[0,19]
|
||
|
|
print["$b "]
|
||
|
|
}
|