Program - function to print the lcm of two number
Topic: Program - function to print the lcm of two number
Solution
def ret_lcm(x: int, y: int): 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