Home >>Python Programs >Python Program to Find LCM
In this example, we will see a Python program to find the LCM of the given input numbers. LCM stands for Least Common Multiple. It is the smallest positive integer that is divisible by all the numbers in LCM.
Example :
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
num1 = int(input("Enter first number: "))
num2 = int(input("Enter second number: "))
print("The L.C.M. of", num1,"and", num2,"is", lcm(num1, num2))