The correct response is:
Math module; On line 1, import it with the following: import math
To use the greatest common divisor (GCD) function in Python, you would import the math module using the line import math
. Then you can use math.gcd()
to find the GCD of two numbers.