The correct response is:
Math module; On line 1, import it with the following: import math
In Python, to use the math
module, you must import it at the beginning of your code with the statement import math
. This module includes a function called gcd
for finding the greatest common divisor.