Positive Negative Zero

Easy
#logic #conditions

Input: `n` (int). Return: 'Positive', 'Negative' or 'Zero'.

Example

Input: 5
Output: 'Positive'
Need a hint?
  • Use elif for multiple conditions
Run your code to see output