Python Program to Find LCM
Author -
Programmer Fect
December 21, 2020
Python Program to Find LCM
- In this program, you'll learn to find the LCM of two numbers and display it.
Source Code :
# Python Program to find the L.C.M. of two input 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
num1 = 54
num2 = 24
print("The L.C.M. is", compute_lcm(num1, num2))