The rules of a cricket game are as follows:
Write a program to implement the scoreboard of a cricket game.
Input format
Output format
For each test case, print the first line as "Case X:" (where X refers to the test case number). In the next P lines, print "Player Y: " followed by the score of the Yth player.
Note:
If the player is currently not out, output a "∗" after the score.
If the player has not yet come out to play, output "DNB" (Did not bat) instead of the score.
It is guaranteed that at the end of the match at least 2 players are still not out.
It is guaranteed that the last ball of the match is not a "W".
Constraints
1≤T≤10
2≤P≤10
1≤N≤10000