色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

python最小約數

林雅南2年前11瀏覽0評論

python最小約數?

利用輾轉相除法求出

a=int(input('please enter 1st num:'))

b=int(input('please enter 2nd num:'))

s=a*b

while a%b!=0:

a,b=b,(a%b)

else:

print(b,'is the maximum common divisor')

print(s//b,'is the least common multiple')