import math
print("To find LCM")
i=int(input("Enter 1st number "))
j=int(input("Enter 2nd number "))
t=math.gcd(i,j)
lcm=i*j/t
print("%d is the lcm"%(lcm))