Read an integer as input. Change the sign of this input integer (i.e., make it negative if it was positive, or positive if it was negative). Note that zero remains unchanged when its sign is changed.
Then, print two lines of output:
The input integer with its sign changed
One of the following messages:
-The number is negativeif the resulting number is less than zero
-The number is positiveif the resulting number is zero or greater
For example, if the input is -11, changing the sign makes it 11, which is a positive integer, and the result will look as follows:
11
The number is positive