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