Solve problem "Sign function" online - Learn Python 3 - Snakify

Sign function


Statement

For the given integer X print 1 if it's positive, -1 if it's negative, or 0 if it's equal to zero.

Try to use the cascade if-elif-else for it.


In all the problems input the data using input() and print the result using print().