Write a python function to find the L.C.M. of two input number
Topic: Write a python function to find the L.C.M. of two input number
Solution
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
List all Python Programs