Skip to content

Instantly share code, notes, and snippets.

@parzibyte

parzibyte/mcm.py Secret

Created April 1, 2021 20:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/1b2c67b685c74b8e1deb03937061602c to your computer and use it in GitHub Desktop.
Save parzibyte/1b2c67b685c74b8e1deb03937061602c to your computer and use it in GitHub Desktop.
def minimo_comun_multiplo(a, b):
return (a * b) / maximo_comun_divisor(a, b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment