# pass is the 'no-op' statement in Python. It can be used in blocks where no action is to be taken ('do nothing'), or as a placehold for code not yet implemented
if x < 0:
print('negative')
elif x == 0:
#TO-DO: put something clever here
pass
else:
print('positive')