Python:实现greatest common divisor最大公约数算法 def greatest_common_divisor(a: int, b: int) -> int: return abs(b) if