Get your own Python server Result Size: 625 x 565
x
 
import numpy as np
num1 = 6
num2 = 9
x = np.gcd(num1, num2)
print(x)
3