x = int(input("Enter a number:"))
if x > 0:
    print(x, "is a positive number")
if x == 0:
    print(x, "is neither positive nor negative")
if x < 0:
    print(x, "is a negative number")
print("The program is over.")