Computer Science, asked by parthiv9819, 1 month ago

write a program in python to input two numbers and print their LCM​

Answers

Answered by Varsha3862
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 taj312
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