x = int(input("x: "))

if x > 0:
    print("positive")
elif x < 0:
    print("negative")
else:
    print("zero")
