This program lets you track the scores for a game between two players. You start by entering the players' names, and then the program keeps track of their scores as you play. The game goes on until one of the players wins by either getting at least 15 points with a 2-point lead or scoring 7 points while the other player has none.
- The program prompts for the names of the two players.
- Both players' scores start at zero.
The program enters a loop where it repeatedly:
- Displays the current score.
- Asks for the winner of the next point.
- Updates the score accordingly.
The game ends when one player:
- Reaches at least 15 points and is ahead by at least 2 points.
- Achieves a score of 7 while the other player has a score of 0.
- The program announces the winner once the game ends based on the scores.