Consider the following mystery predicate function that consumes three Booleans and produces a Boolean:
(define (cond-mystery? a b c)
(cond
[a b]
[else c]))
Write the scheme function bool-mystery? so that it is equivalent to cond-mystery? except that it uses only a Boolean expression (i.e.: it does not have a cond expression).