From d52fdb9b7399642d43081c2ee1ba7c5f01c46a91 Mon Sep 17 00:00:00 2001 From: pranayag <31480760+pranayag@users.noreply.github.com> Date: Tue, 1 Oct 2019 20:44:57 +0530 Subject: [PATCH] Create hcf.py --- hcf.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 hcf.py diff --git a/hcf.py b/hcf.py new file mode 100644 index 0000000..543454e --- /dev/null +++ b/hcf.py @@ -0,0 +1,13 @@ +def hcf(x, y): + 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 = int(input("Enter first number: ")) +num2 = int(input("Enter second number: ")) +print("The H.C.F. of", num1,"and", num2,"is", hcf(num1, num2))