LCM

    0

    0

    Mahendra Kumar

    basicMathsbeginner

    Finding LCM of two given numbers

    # take inputs
    num1 = int(input('Enter first number: '))
    num2 = int(input('Enter second number: '))
    # choose the greater number
    if (num1 > num2):
        greater = num1
    else:
        greater = num2
    while(True):
        # find LCM
        if(greater % num1 == 0 and greater % num2 == 0):
            print('The LCM of',num1,'and',num2,'is',greater)
            break
        greater += 1
    
    Codiga Logo
    Codiga Hub
    • Rulesets
    • Playground
    • Snippets
    • Cookbooks
    Legal
    • Security
    • Privacy Policy
    • Code Privacy
    • Terms of Service
    soc-2 icon

    We are SOC-2 Compliance Certified

    G2 high performer medal

    Codiga – All rights reserved 2022.