How to perform 'LCM' in COBOL.
* Task: LCM * Language: COBOL PROCEDURE DIVISION. lcm() * Implementation for LCM * TODO: Implement core logic here * Step 1: Prepare data * Step 2: Process LCM DISPLAY("Done"); STOP RUN.