Run »
#Import math Library import math #find the the greatest common divisor of the two integers print (math.gcd(3, 6)) print (math.gcd(6, 12)) print (math.gcd(12, 36)) print (math.gcd(-12, -36)) print (math.gcd(5, 12)) print (math.gcd(10, 0)) print (math.gcd(0, 34)) print (math.gcd(0, 0))
3
1
12
12
10
34
0