Question: Create an if-else conditional statement where a user inputs a number and outputs positive, negative, zero or string number.
num = input("Input: ")
if num > 0:
print("Output: Positive")
elif num < 0:
print("Output: Negative")
elif num == 0:
print("Output: Zero")
else:
print("Output: String Number")