Today,Big Pang Pang and Captain want to plan a game,the rule is simple.Now,they starting with two natural numbers.Captain,the first player, subtracts any positive multiple of the lesser of the two numbers from the greater of the two numbers, provided that the resulting number must be nonnegative. Then Big Pang Pang, the second player, does the same with the two resulting numbers, then Captain, etc., alternately, until one player is able to subtract a multiple of the lesser number from the greater to reach 0, and thereby wins. For example, the players may start with (25,7):
25 7
11 7
4 7
4 3
1 3
1 0
an Captain wins.
(sorry,数据已经修改。)
For each line of input, output one line saying either Captain or Big Pang Pang assuming that both of them play perfectly. The last line of input contains two zeroes and should not be processed.