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 = 20
c = 40
print("The LCM (Least Common Multiple) is:", getLMC(getLMC(a, b), c))
'''
run:
The LCM (Least Common Multiple) is: 120
'''