Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.09 KB | None | 0 0
  1. x = int(input())
  2. if x > 0:
  3.     print(1)
  4. elif x < 0:
  5.     print(-1)
  6. else:
  7.     print(0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement