8.gcd(n1,n2)Sometimes,n1 n2 are too big to factor.you can try gcd(n1,n2)
def gcd(a, b):
if a < b:
a, b =
2018-06-03