Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- for i in range(333555, 777999+1):
- dls = set()
- for d in range(2, int(i**0.5)+1):
- if i % d == 0:
- if len(str(d)) == 2:
- dls |= {d}
- if len(str(i // d)) == 2:
- dls |= {i//d}
- if len(dls) == 35:
- print(i, min(dls), max(dls))
- #524160 10 96
- #540540 10 99
- #582120 10 99
- #589680 10 91
- #637560 10 99
Advertisement
Add Comment
Please, Sign In to add comment