8 lines
105 B
Plaintext
8 lines
105 B
Plaintext
x=int(input())
|
|
if x > 0:
|
|
print("Positive")
|
|
if x < 0:
|
|
print("Negative")
|
|
if x == 0:
|
|
print("Zero")
|