How to find the LCM of Two Numbers using python

def compute_lcm(x, y): if x > y:greater = xelse:greater = ywhile True:  &nb

Created By :

Created On :

23-03-2024

How to find the LCM of Two Numbers using python

Updated on 24, February 2024 293 Enrolled
how to

Step 1

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 first number: "))

num2 = int(input("Enter second number: "))

print("LCM:", compute_lcm(num1, num2))

line

Copyrights © 2024 letsupdateskills All rights reserved