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
print("The LCM (Least Common Multiple) of", a, "and", b, "is:", getLMC(a, b))
'''
run:
The LCM (Least Common Multiple) of 12 and 20 is: 60
'''