Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 19, 2019 17:12
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/f150335c4f1ebffd6cba8adeb7594b72 to your computer and use it in GitHub Desktop.
Save parzibyte/f150335c4f1ebffd6cba8adeb7594b72 to your computer and use it in GitHub Desktop.
int main(void) {
int a = 72, b = 50;
int mcm = minimo_comun_multiplo(a, b);
printf("MCM de %d y %d = %d\n", a, b, mcm);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment