[lang-ref] ( least_common_multiple ) ( python )

def test_least_common_multiple():
    # mth.lcm
    r = math.lcm(4, 12, 20)
    assert r == 60