You are given two integers a and b.
Return True if they have the same sign, meaning both are strictly positive or both are strictly negative. Return False otherwise.
Treat 0 as having no sign: if either a or b is 0, the answer is False.
NOTE: This is a function-type question — you only write the function. Do not read input or print anything; a hidden checker calls your function and checks its return value.
Arguments
3
5
Returns
True