1. Set target to 7 and guessed to false.
2. While guessed is false, Do step 3 through step 14
3. Get BobGuess
4. If BobGuess equals target then
5.    Output "Bob gets the kiss!"
6.    Set guessed to true.
7. Else
8.    Output "Sorry Bob."
9.    Get CharlieGuess.
10.   If CharlieGuess equals target then
11.       Output "Charlie gets the kiss!"
12.       Set guessed to true.
13.   Else
14.       Output "Sorry Charlie."
15.  Stop