write a program in python to input two numbers and print their LCM
Answers
Answered by
0
Answer
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))
Answered by
0
Answer:
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))
Explanation:
mark as brainliest
Similar questions