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