csc-python-solutions/06/2 - What's Your Sign?
2021-02-18 19:29:38 +01:00

8 lines
105 B
Plaintext

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