{"raw_statement":[{"iden":"background","content":"注：J5 与 S5 仅数据范围有所不同，在此选取 S5 的数据范围及数据进行评测。"},{"iden":"statement","content":"Canada’s top two nuclear scientists, Patrick and Roland, have just completed the construction of the world’s first nuclear fission reactor. Now it is their job to sit and operate the reactor all day, every day. Naturally they got a little bored after doing this for a while and as a result, two things have happened. First, they can now control the individual reactions that happen inside the reactor. Second, to pass the time, they have invented a new game called Nukit.\n\nAt the beginning of Nukit, a number of particles are put in the reactor. The players take alternating turns, with Patrick always going first. When it is a player’s turn to move, they must select some of the remaining particles to form one of the possible reactions. Then those particles are destroyed. Eventually there will be so few particles that none of the reactions can be formed; at this point, the first person who is unable to form a reaction on their turn loses.\n\nIn our universe you can assume that there are only $4$ types of particles: `A`, `B`, `C`, `D`. Each reaction is a list of particles that can be destroyed on a single turn. The five reactions are:\n\n$1.$ `AABDD`\n\n$2.$ `ABCD`\n\n$3.$ `CCD`\n\n$4.$ `BBB`\n\n$5.$ `AD`\n\nFor example, the first reaction `AABDD` says that it is allowable to destroy two `A`, one `B`, and two `D` particles all at the same time on a turn.\n\nIt turns out that, no matter how many particles start off in the reactor, exactly one of Patrick or Roland has a perfect winning strategy. By player $X$ has a perfect winning strategy, we mean that no matter what the other player does, player $X$ can always win by carefully choosing reactions.\n\nFor example, if the reactor starts off with one `A`, five `B`, and three `D` particles then Roland has the following perfect winning strategy: “if Patrick forms reaction `BBB` initially, then form reaction `AD` afterward; if Patrick forms reaction AD initially, then form reaction `BBB` afterward.” (The strategy works because either way, on Patrick’s second turn, there are not enough particles left to form any reactions.)\n\nGiven the number of each type of particle initially in the reactor, can you figure out who has a perfect winning strategy?"},{"iden":"input","content":"The first line of input contains $n$, the number of test cases $(1 \\leq n < 100)$. Each test case consists of $4$ integers separated by spaces on a single line; they represent the initial number of `A`, `B`, `C` and `D` particles. You can assume that there are initially between $0$ and $30$ (inclusive) of each type of particle."},{"iden":"output","content":"For each test case, output the player who has a perfect winning strategy, either `Roland` or `Patrick`."},{"iden":"note","content":"Partial Explanation for Sample Output:\n\nThe first output occurs since Patrick loses immediately, since he cannot form any reaction. (Roland’s perfect winning strategy is “do nothing.”)\n\nThe second output occurs since Patrick has the perfect winning strategy “form reaction ABCD,” which makes Roland lose on his first turn.\n\nThe third output is explained in the problem statement."}],"translated_statement":null,"sample_group":[["6\n0 2 0 2\n1 3 1 3\n1 5 0 3\n3 3 3 3\n8 8 6 7\n8 8 8 8","Roland\nPatrick\nRoland\nRoland\nRoland\nPatrick"]],"show_order":[],"formal_statement":null,"simple_statement":null,"has_page_source":false}