Now calculate gcd(a,b) for a = 66528, b = 52920 and enter it below.
gcd(a,b)
a = 66528, b = 52920
import math greatest_common_divisor = math.gcd(66528, 52920) print(f"{greatest_common_divisor}")
Last updated 1 year ago