def getLMC(a, b):
lmc = (a > b and a or b)
while 1:
if (lmc % a) == 0 and (lmc % b) == 0:
return lmc
lmc += 1
a = 12
b = 15
c = 10
d = 75
print("The LCM (Least Common Multiple) is:", getLMC(getLMC(getLMC(a, b), c), d))
'''
run:
The LCM (Least Common Multiple) is: 300
'''