You can use ab/g to compute the least common multiple of two integers, a and b, where g is the greatest common divisor of a and b. For example, the least common multiple of 4 and 6 is 12. Write a maple procedure, LCM, which take as input n>0 integers a1,a2,...an and computes their least common multiple. By convention, the least common multiple of zero and any other number is zero.