Skip to content

Instantly share code, notes, and snippets.

@acwoss
Created April 19, 2018 18:55
Show Gist options
  • Save acwoss/043cc84204339228291ffddd3ab4e004 to your computer and use it in GitHub Desktop.
Save acwoss/043cc84204339228291ffddd3ab4e004 to your computer and use it in GitHub Desktop.
PleasingQuarrelsomeSlash created by acwoss - https://repl.it/@acwoss/PleasingQuarrelsomeSlash
def mdc(a, b):
while b:
a, b = b, a % b
return a
print(mdc(70, 25))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment