Exercise 12 - 09/26/2021 at 11:59:00 PM EDT 1. Write a program to find the Lowest Common Multiple of 2 numbers. An easy way is to start at the higher number, and keep multiplying the numbers up alternatively unti we get a common number. Sample Run: Enter 2 numbers: 14 36 The Lowest Common Multiple is 252 Explanation of logic: 14 < 36, so start from 36 14*2 = 28 < 36 14 *3 = 42 > 36 36 *2 = 72 < 42 14 * 4 = 56 < 72 14 * 5 = 70 < 72 14 * 6 = 84 > 72 36 *3 = 108 < 84 14 * 7 = 98 < 108 14 * 8 = 112 > 108 36 * 4 = 144 < 112 14 * 9 = 126 < 144 14 * 10 = 140 < 144 14 * 11 = 154 > 144 36 * 5 = 180 > 154 14 * 12 = 168 < 180 14 * 13 = 182 < 180 36 * 6 = 216 > 182 14 * 14 = 196 < 216 14 * 15 = 210 < 216 14 * 16 = 224 > 216 36 * 7 = 252 > 224 14 * 17 = 238 < 252 14 * 18 = 252 == 252 Stop.