Objective
Write a function that computes the least common multiple of two unsigned integers.
Steps
$ lcm(4, 6)
12
$ lcm(5, 7)
35
$ lcm(0, 5)
0
Expected files
Allowed functions
None. Write every helper yourself.

Objective
Write a function that computes the least common multiple of two unsigned integers.
Steps
$ lcm(4, 6)
12
$ lcm(5, 7)
35
$ lcm(0, 5)
0
Expected files
Allowed functions
None. Write every helper yourself.

Tests
Run the tests to grade your code