Write a function that returns True if both numbers are:
True
0
Otherwise, return False.
False
both(6, 2) ➞ True both(0, 0) ➞ True both(-1, 2) ➞ False both(0, 2) ➞ False
Inputs will always be two numbers.