Commit 0a67d6cf by BellCodeEditor

auto save

parent c256c561
Showing with 10 additions and 2 deletions
# 我们都爱夸夸夸
\ No newline at end of file
q=int(input("输入第一个正整数:"))                        
w=int(input("输入第二个正整数:"))
list = [q,w]
g=max(list)
while True:
    if g % q == 0 and g % w == 0:
        print(g)
        break
    g += 1
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment