12 lines
212 B
Plaintext
12 lines
212 B
Plaintext
func main[] : i64
|
|
found := 0
|
|
|
|
i := 1
|
|
while true
|
|
if math.is_prime(i)
|
|
found += 1
|
|
if found == 10001
|
|
io.println_i64(i)
|
|
break
|
|
i += 1
|