Refer to the following boolean statement:
is_tall = True is_bulky = True is_lean = False is_short = False result = (is_tall and is_bulky) or (is_lean and is_short)