Advertisement
Guest User

pyhton

a guest
Sep 26th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. #pruebaa
  2. a=int(raw_input())
  3. b=int(raw_input())
  4.  
  5. if(a==b):
  6.     print "ambos numeros son iguales"
  7. else:
  8.     if(a>b):
  9.         print a
  10.     else:
  11.         print b
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement