csc-python-solutions/06/2 - What's Your Sign?.py

8 lines
105 B
Python

x=int(input())
if x > 0:
print("Positive")
if x < 0:
print("Negative")
if x == 0:
print("Zero")