Write a python function to Compute LCM of two input number
Topic: Write a python function to Compute LCM of two input number
Solution
def compute_lcm(x, y): 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