Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def smpl(x):
- for d in range(2, int(x**0.5)+1):
- if x % d == 0:
- return False
- return True
- cnt = 1
- for i in range(194441, 196501):
- if smpl(i) and i % 100 == 93:
- print(cnt, i)
- cnt += 1
Advertisement
Add Comment
Please, Sign In to add comment