Advertisement
Guest User

Untitled

a guest
Apr 29th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. # coding: utf-8
  2. # Here your code !
  3.  
  4. def func():
  5. try:
  6. line=input().rstrip()
  7. list=line.split(" ")
  8. a=int(list[0])
  9. b=int(list[1])
  10. c=int(list[2])
  11. except:
  12. print("input error")
  13. return -1
  14.  
  15. if((a<b) and (b<c)):
  16. print("Yes")
  17. else:
  18. print("No")
  19.  
  20. func()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement