Check if integer is positive odd or negative even. Examples: 3 => True, -4 => True, 4 => False, 0 => False
Implement this function:
def is_positive_odd_or_negative_even(n: int) -> bool:
Write the function only — the arguments are read for you and the return value is printed automatically.
Arguments arrive as one Python literal per line, in this order: n.
Input
3
Output
True