Now we will change the script to output the least common multiple (LCM). Think carefully about how to do this. If you take the smaller of the two integers (MinNum) and start multiplying 2, 3, 4, etc times this integer, how can you determine if a multiple of MinNum is also a multiple of the larger integer (MaxNum)? Hint: If K is an integer multiplier, MinNum*K is an integer multiple of MinNum. How can we determine if MinNum*K is a common multiple of MaxNum?