Write a python function that returns the lcm of two numbers
Topic: Write a python function that returns the lcm of two numbers
Solution
def 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