Python program to find H.C.F of two numbers
#Python program for calculating the H.C.F. of two numbers
# define a function
def calc_the_hcf(x, y):
#Select the smaller number
if x > y:
smaller = y
else:
smaller = x
for i in range(1, smaller+1):
if((x % i == 0) and (y % i == 0)):
hcf = i
return hcf
num1 = 35
num2 = 12
print("The H.C.F. is", calc_the_hcf(num1, num2))