Advertisement
LucasCiappa97

Ciapparelli_Ejercicio4

Mar 30th, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. print('ingresar dos numeros')
  2. num1 = int (input())
  3. num2 = int (input())
  4. if num1 % num2 == 0:
  5.     print ('num1 es multiplo de num2')
  6. else:
  7.     print('num1 no es multiplo de num')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement