Python Program to Find HCF or GCD (Using the Euclidean Algorithm)

bookmark

# 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)

 

Output

The H.C.F. is 6