16 lines
193 B
Python
16 lines
193 B
Python
|
|
from Cryptotools.Utils.utils import gcd
|
|
|
|
|
|
for i in range(1, 30):
|
|
if 30 % i == 0:
|
|
print(i)
|
|
|
|
print()
|
|
|
|
for i in range(1, 40):
|
|
if 40 % i == 0:
|
|
print(i)
|
|
|
|
print(gcd(30, 40))
|