To write a program to find the GCD of two numbers using function.
- Hardware – PCs
- Anaconda – Python 3.7 Installation / Moodle-Code Runner
- Define a function.
- Get the two numbers from the user.
- Compare the two values, to find the smaller number.
- Use for() and if() loop to find the GCD of the two numbers.
#Developed by:Sanjit.P
#Registernumber:23002570
def gcd():
n1=int(input())
n2=int(input())
for i in range(1,min(n1,n2)):
if n1%i==0 and n2%i==0:
gcd=i
print("GCD of two numbers is:",gcd)Thus the program to find the GCD of two numbers is written and verified using python programming.
