LCM of Two Numbers
Following python program will find the LCM of two given numbers.
import math
a = int(input("Enter first number: "))
b = int(input("Enter second number: "))
lcm = abs(a*b) // math.gcd(a, b)
print(f"LCM of {a} and {b} is {lcm}")
Output of program
Enter first number: 5 Enter second number: 7 LCM of 5 and 7 is 35
Explanation
LCM (Least Common Multiple) is the smallest number that is divisible by both numbers.In other words:
- It must be a multiple of 5
- It must be a multiple of 7
- And it should be the smallest such number.
- Multiples of 5: 5, 10, 15, 20, 25, 30, 35, 40, …
- Multiples of 7: 7, 14, 21, 28, 35, 42, …
Looking at both lists:
- The first number that appears in both lists is 35.
< Back to Home >
No comments:
Post a Comment