Write a python program to find the 2nd greatest common divisor of two given integers.
Answers
Answered by
0
Answer:
# create a program to print the gcd of two number in python using the math. ...
import math.
print(" GCD of two number 0 and 0 is ", math.gcd(0, 0))
#math.gcd(a, b), a and b are the two integer number.
print(" GCD of two number 0 and 48 is ", math.gcd(0, 48))
a = 60 # assign the number to variable a.
HOPE IT WILL HELP YOU
Similar questions