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.