Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. one = int(input())
  2. two = int(input())
  3. three = int(input())
  4. if one < two:
  5. one, two = two, one
  6. if two < three:
  7. two, three = three, two
  8. if one < two:
  9. one, two = two, one
  10. print(one)
  11. print(two)
  12. print(three)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement