Bootstrap

用Python求最大公因数和最小公倍数


num_1 = int(input("请输入第一个数:"))
num_2 = int(input("请输入第二个数:"))

def greatest_common_factor(num_1,num_2):
;