Commit 78c1577c by BellCodeEditor

save project

parent 8a2d5b0b
Showing with 51 additions and 0 deletions
'''
import turtle
pen=turtle.Pen()
pen.circle(50)
pen.circle(-10)
pen.circle(50,90)
pen.circle(-10)
pen.circle(50,90)
pen.circle(-10)
pen.circle(50,90)
pen.circle(-10)
turtle.done()
'''
'''
import turtle
pen=turtle.Pen()
pen.forward(100)
pen.right(90)
pen.forward(100)
pen.right(90)
pen.forward(100)
pen.right(90)
pen.forward(100)
pen.right(90)
pen.goto(100,-100)
turtle.done()
'''
'''
i=0
for i in range(10):
print(i)
i+=1
'''
'''
a=int(input("输入"))
b=int(input("输出"))
if a>b:
print(a-b)
else:
print(b-a)
print(a+b)
'''
x=int(input())
y=int(input())
grenter=max(x,y)
while True:
if grenter % x==0 and grenter % y==0:
print(grenter)
break
grenter+=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