A Program to Find LCM
In this example, we are giving a program to find LCM(least common multiple).
Program to find LCM:
# Find LCM
def compute_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 1st number: '))
num2 = int(input('Enter 2nd number: '))
print("The L.C.M. is", compute_lcm(num1, num2))
Output:
Enter 1st number: 65 Enter 2nd number: 35 The L.C.M. is 455