Answer :

Answer:  Here's a Python program to do just that: ```python

Get the user input

num = int(input("Enter a number: "))

Check if the number is positive or negative

if num > 0: print("The number is positive!") elif num < 0: print("The number is negative!") else: print("The number is zero!") ``` Here's how the program works:

The input() function is used to get a number from the user.

The int() function is used to convert the user's input into an integer.

The program then checks if the number is greater than 0 using an if statement. If it is, the program prints "The number is positive!".

If the number is not greater than 0, the program checks if it's less than 0 using an elif statement. If it is, the program prints "The number is negative!".

If the number is neither greater than nor less than 0, the program prints "The number is zero!

Explanation: