Guest User

Untitled

a guest
Apr 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. def mdc(a,b):
  2. while b !=0:
  3. resto = a % b
  4. a = b
  5. b = resto
  6.  
  7. return a
  8.  
  9. print(mdc(50,2))
Add Comment
Please, Sign In to add comment