#! /usr/bin/python

x = raw_input("Please enter a number: ")
if x < 0:
  x = 0
  print 'Negative changed to zero'
elif x == 0:
  print 'Zero'
else: print 'Pozitiv'