write a program to find the greatest common divisor of two numbers in python(in addition to and, another argument m is passed to the function) code example
Example: python code for gcd of two numbers
# Function to find HCF the Using Euclidian algorithm
def compute_hcf(x, y):
while(y):
x, y = y, x % y
return x
hcf = compute_hcf(300, 400)
print("The HCF is", hcf)