Least Common Multiple
Question: Define a function 'lcm' that returns the least common multiple of two integers, as an integer.
More Information:
https://en.wikipedia.org/wiki/Least_common_multipleExample
q)lcm[12;80]
240
q)lcm[12;13]
156
q)lcm[12;12]
12