# Write out the first 1000 primes
for n in (1..1000) do println(n,"\t",prime(n)) done