Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def cmmdc(a, b):
- if b == 0:
- return a
- return cmmdc(b, a % b)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement