Source
x
=
6
if
x
<
0
:
print
(
x
,
' negative'
)
elif
x
>
0
:
print
(
x
,
' positive'
)
else
:
print
(
x
,
' zero'
)