Joined
Last Seen
0 Reputation Points
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
0 Endorsements
Ranked #107.57K
~153.61K People Reached
Favorite Forums
1 Posted Topic
Re: def find_gcd(n1, n2): if n1 % n2 == 0: return n2 == 0: return find_gcd(n2, n1 % n2) n1 = int(input("Enter the first number: ")) n2 = int(input("Enter the second number: ")) print("The GCD of " + str(n1) + " and " + str(n2) + " is " + str(find_gcd(n1,n2)) … |