Advertisement
marcosoliva

oliva_ejercicio#2

Mar 30th, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. print ("ingresar 2 numeros")
  2. n1=int(input())
  3. n2=int(input())
  4. if n1>n2:
  5.     print('n1 es mayor a n2')
  6. if n1<n2:
  7.     print('n1 es menor a n2')
  8. if n1==n2:
  9.     print ('n1 es igual a n2')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement