fork download
  1. def czy_pierwsza(n):
  2. d = 2
  3. while d * d <= n:
  4. if n % d == 0:
  5. return False
  6. d+=1
  7. return True
  8. def pierwsza(n):
  9. numer = 0
  10. i = 2
  11. while numer != n:
  12. if czy_pierwsza(i):
  13. numer += 1
  14. i += 1
  15. return i - 1
  16. print(pierwsza(7))
  17. print(pierwsza(25))
Success #stdin #stdout 0.03s 9652KB
stdin
Standard input is empty
stdout
17
97