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.