시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB65583.333%

문제

A card game, often called "Fool's Game", is quite popular in Russia. We will describe a modification of this game for two players and a deck of 54 cards (52 standard cards along with two jokers, black and red).

All spades and clubs are assumed to have black color. All hearts and diamonds are assumed to have red color. Jokers have no rank or suit, just color. One suit is declared to be a trump.

Initially, both players have six cards. The other 42 cards, in some order, constitute a deck.

A game consists of rounds. Before the round each player has several cards, one of the players is starting, the other one is covering. The starting player starts by laying one or several cards of the same rank down on the table. Jokers can never be laid down by the starting player. The number of cards must not exceed the number of cards the covering player has. The covering player in turn covers all the cards with some of her cards, laying them on the table above the uncovered cards. A card can cover another if at least one of the following is true:

  • it has the same suit and higher rank (the order of ranks is 2, 3, 4, 5, 6, 7, 8, 9, 10, J, Q, K, A, where 2 is the lowest rank and A is the highest rank);
  • it is a trump and the card to cover is not a trump (a trump can only be covered by a higher trump);
  • it is a joker and its color matches the color of the card to cover;
  • it is a joker and its color matches the color of the trump suit.

After the cards on the table are all covered, the starting player can toss some more cards to be covered. Similarly, jokers can never be tossed by the starting player. The rank of each card tossed must be among the ranks of the cards already on the table at the moment. Now the newly added cards must be covered by the covering player, after that the starting player can toss more cards, and so on. The starting player cannot toss more cards than the covering player has at the moment.

The round ends when either the covering player cannot or does not want to cover all uncovered cards on the table, or when the starting player cannot or does not want to toss more cards. In the first case, when the covering player declares that she does not want to cover all uncovered cards on the table, the starting player is given a chance to toss in more cards. The ranks of the cards tossed must be among the ranks of the cards already on the table. The number of uncovered cards on the table cannot exceed the number of cards that the covering player has at the moment. After that, the covering player loses the round and takes all the cards from the table, adding them to her cards. Starting player keeps her starting role and moves again in the next round.

In the second case, when all cards on the table are covered and the starting player cannot or does not want to toss more cards, the covering player wins the round and the cards on the table are removed from the game. The players' roles for the next round are swapped: the covering player becomes the starting one and vice versa.

Between rounds, if the starting player of the previous round has less than six cards, she draws additional cards from the top of the deck one by one until she has exactly six cards. After that, similarly, if the covering player of the previous round has less than six cards, she draws additional cards from the top of the deck one by one until she has exactly six cards.

If, before the start of a round, one of the players has no cards, and the other one has one or more cards, then the player with no cards wins the game. If both players have no cards, then the game ends in a draw. If both players have at least one card, but all cards of the starting player of the upcoming round are jokers, then the starting player cannot make a move and lay down any cards, the game ends and the covering player of the upcoming round wins the game.

Two players, Johann and Sebastian, are going to play a game by the rules described above. Johann is the starting player of the first round.

Given the trump suit, the cards the players initially have, and the order of the remaining cards in the deck, find out who wins the game if both play optimally. Both players have full information about cards in the game and the order of cards in the deck.

입력

The first line of the input contains a single integer $t$ ($1 \le t \le 10^4$) --- the number of test cases.

Each test case is described in four lines. The first line contains six card descriptions --- the cards of Johann. The second line contains six card descriptions --- the cards of Sebastian. The third line contains 42 card descriptions --- the cards in the deck, from top to bottom. The fourth line contains a single character --- the trump suit.

Each card except jokers is specified by its rank ('2'...'9', 'T' for 10, 'J' for Jack, 'Q' for Queen, 'K' for King, 'A' for Ace) followed by its suit ('S' for spades, 'C' for clubs, 'D' for diamonds, 'H' for hearts). Red joker is specified by two characters, "\texttt{RJ}". Black joker is specified by two characters, "\texttt{BJ}".

All 54 cards in every test case are different.

출력

For each test case, output a single line containing the name of the winner of the game, or "Bach" if the game ends in a draw.

예제 입력 1

2
TC QD 2S TH 4S 3C
AS RJ AC 7D 6C BJ
3D 4C 8C AD TD TS 7H JS KD 4H QC 6H 9D 7C 9H JC AH 5H 6S QH KS 5S 5D 3H JD JH 8H QS 2H 4D 5C 9S KH 6D 9C 8D 8S KC 7S 3S 2D 2C
S
TC 8S JS JD 5C 9C
QS 8C 3H 4D 4H 2D
QH 7S 7H 3C 2H 7C TD 9H 8D AH 7D QC JH 5D AS 5H 3D JC 2S 6D AC 9D 4C 6S KD 8H 6C 4S RJ KH 3S TS KC KS 5S QD 9S BJ 6H TH AD 2C
D

예제 출력 1

Johann
Sebastian