Testing your code..
Write a function lcm that takes 2 arguments and returns the lowest common multiple of these two numbers.
Examples
lcm(12,16) ➞ 48lcm(15,25) ➞ 75lcm(55,22) ➞ 110
Note: