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

8 lines
105 B
Plaintext
Raw Normal View History

2021-02-18 18:29:38 +00:00
x=int(input())
if x > 0:
print("Positive")
if x < 0:
print("Negative")
if x == 0:
print("Zero")