"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.findLowestCommonMultiple = void 0;
const lcm_js_1 = require("./lcm.js");
const findLowestCommonMultiple = (a, b) => (0, lcm_js_1.lcm)(a, b);
exports.findLowestCommonMultiple = findLowestCommonMultiple;