Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create LCM of two #1572

Merged
merged 1 commit into from
Oct 1, 2022
Merged

Create LCM of two #1572

merged 1 commit into from
Oct 1, 2022

Commits on Oct 1, 2022

  1. Create LCM of two No. in Pynum1 = int(input(“Enter first number: “)) …

    …num2 = int(input(“Enter second number: “)) if num1 > num2: greater = num1 else: greater = num2 while(True): if((greater % num1 == 0) and (greater % num2 == 0)): lcm = greater break greater += 1 print(“LCM of”,num1,”and”,num2,”=”,greater)thon
    SouvikDey2001 authored Oct 1, 2022
    Configuration menu
    Copy the full SHA
    b270967 View commit details
    Browse the repository at this point in the history