Guest User

Untitled

a guest
Oct 24th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. x = int(input("Write down x: "))
  2. y = int(input("Write down y: "))
  3. z = int(input("Write down z: "))
  4. if x>=y and x>=z:
  5. print("The biggest is x:", x)
  6. if y>=x and y>=z:
  7. print("The biggest is y:", y)
  8. if z>=y and z>=x:
  9. print("The biggest is z:", z)
Add Comment
Please, Sign In to add comment