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