Create a function that takes a number as its only argument and returns True if it's less than or equal to zero, otherwise return False.
less_than_or_equal_to_zero(5) ➞ False
less_than_or_equal_to_zero(0) ➞ True
less_than_or_equal_to_zero(-2) ➞ True
return the result.