From 126c16859128ecb3fdf44c99030dcb64a512b1ac Mon Sep 17 00:00:00 2001 From: GuraseesSinghKohli <72308927+GuraseesSinghKohli@users.noreply.github.com> Date: Fri, 1 Oct 2021 11:58:37 +0530 Subject: [PATCH] Create LCM --- LCM | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 LCM diff --git a/LCM b/LCM new file mode 100644 index 0000000..590950a --- /dev/null +++ b/LCM @@ -0,0 +1,18 @@ +def calculate_lcm(x, y): + # selecting the greater number + 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 + +# taking input from users +num1 = int(input("Enter first number: ")) +num2 = int(input("Enter second number: ")) +# printing the result for the users +print("The L.C.M. of", num1,"and", num2,"is", calculate_lcm(num1, num2))