Read an integer and print:
positiveif greater thannegativeif less thanzeroif equal to
Input: A single integer
Output: One of: positive, negative, or zero
Use if, elif, and else to cover all three cases. This is your first three-way decision problem.