Skip to content

Instantly share code, notes, and snippets.

@nuit
Created July 9, 2014 18:56
Show Gist options
  • Save nuit/85091f9a67416db1c7b4 to your computer and use it in GitHub Desktop.
Save nuit/85091f9a67416db1c7b4 to your computer and use it in GitHub Desktop.
Algoritmo de Euclides
def mdc(a,b):
while(b!=0):
c=a%b
a=b
b=c
print a
mdc(2024,748)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment