lcm finder code example
Example: lcm calculator
# I know you're a coder! So instead of using a calculator online,
# you should make it on you're own!
#Code:
def compute_lcm(x, y):
# choose the greater number
if x > y:
greater = x
else:
greater = y
while(True):
if((greater % x == 0) and (greater % y == 0)):
lcm = greater
break
greater += 1
return lcm
num1 = int(input('Number 1'))
num2 = int(input('Number 2'))
print("The L.C.M. is", compute_lcm(num1, num2))