write a python program to find gcd of two numbers
PYTHON-----
# FIRSTLY PASTE 'pip3 install HCF' IN TERMINAL
num1 = int(input('Enter the first number'))
num2 = int(input('Enter the second number'))
import HCF
s=HCF.HCF( num1 , num2 )
print(s.gcd)
write a python program to find gcd of two numbers
PYTHON-----
# FIRSTLY PASTE 'pip3 install HCF' IN TERMINAL
num1 = int(input('Enter the first number'))
num2 = int(input('Enter the second number'))
import HCF
s=HCF.HCF( num1 , num2 )
print(s.gcd)
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)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us