Which equation best captures the following logic: A car starts when doing all of the following: the keyless fob is within a specified proximity, the driver presses the brake, the driver presses the start button. Inputs: k: key within a specified proximity, b: brake pressed, s: start button pressed Output: c: car starts.
c = (k + b)s
c=k(b + s)
c= kbs
k + b +5