7 lines
129 B
Python
7 lines
129 B
Python
#!/usr/bin/env python3
|
|
|
|
from Cryptotools.Numbers.primeNumber import sieveOfEratosthenes
|
|
|
|
print(sieveOfEratosthenes(100))
|
|
print()
|