Python Program to Find LCM 2022-09-28 num = int(input("Enter a number: ")) 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 n1 = 54 n2 = 24 print("The L.C.M. is", compute_lcm(n1,n2)) Twitter WhatsApp Telegram Facebook