def test(num):
    if num > 0: #checks to see if the number is positive
        print("Positive") #prints positive for these numbers
    if num == 0: #checks to see if the number is zero
        print("Zero") #prints zero for these numbers 
    if num < 0: #checks to see if the number is negative
        print("Negative") #prints negative for these numbers
