Skip to content

Instantly share code, notes, and snippets.

@goyuninfo
Last active August 29, 2015 14:01
Show Gist options
  • Save goyuninfo/896b354c33424bfa128f to your computer and use it in GitHub Desktop.
Save goyuninfo/896b354c33424bfa128f to your computer and use it in GitHub Desktop.
import math
def isPrime(n):
i=2
while i<=math.sqrt(n):
if n%i==0:
return 0
i=i+1
return 1
i=3
c=2
while 1:
i=i+2
if isPrime(i):
c=c+1
if c==10001:
break
print i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment