First commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
|
||||
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))
|
||||
Reference in New Issue
Block a user