Sign of a Number

Problem Statement

The mathematical function sign(x) is defined as: sign(x) = 1 if x > 0, sign(x) = -1 if x < 0, sign(x) = 0 if x = 0. Output the value of sign(x) for the given number.

Input

A single number x is entered.

Output

Print the solution to the problem.

Example

[{'input': '179', 'output': '1'}]