Skip to content

Instantly share code, notes, and snippets.

@brandon22esquivel
Created September 7, 2019 21:33
Show Gist options
  • Save brandon22esquivel/ceb549836fdc1a3b258b025a537db8c5 to your computer and use it in GitHub Desktop.
Save brandon22esquivel/ceb549836fdc1a3b258b025a537db8c5 to your computer and use it in GitHub Desktop.
def xmayor (num1,num2):
if num2 % num1 == 0:
print num1, "Es multiplo de " , num2
else:
print num1, "No es multiplo de ", num2
num1=input("Dame el primer numero:")
num2=input("Dame el segundo numero:")
print xmayor(num1,num2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment