Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- #python Mcd
- def mcd(a,b):
- print " maximo comun divisor"
- while a! = 0:
- a,b = b%a, a
- return b
- print mcd(21,70)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement