Advertisement
VisualPaul

Untitled

Feb 21st, 2015
502
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.36 KB | None | 0 0
  1. if a<b and b<c:
  2.     print c
  3. if b<a and a<c:
  4.     print c
  5. if b<c and c<a:
  6.     print a
  7. if c<b and b<a:
  8.     print a
  9. if c<a and a<b:
  10.     print b
  11. if a<c and c<b:
  12.     print b
  13. if a==b and b<c:
  14.     print c
  15. if b==c and c<a:
  16.     print a
  17. if a==c and c<b:
  18.     print c
  19. if a<b and b==c:
  20.     print c
  21. if b<a and a==c:
  22.     print c
  23. if c<a and a==b:
  24.     print b
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement