a = int(input("Enter a number:")) if a != 0: if a>0: print("POSITIVE") else: print(a," NEGATIVE") else: print("ZERO")