#Lutece0368. Interesting Checkers

Interesting Checkers

Migrated from Lutece 368 Interesting Checkers

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Totalfrank has fall in love with JoyZhang for a long time. But Totalfrank is from Mars and JoyZhang is from Venus. You know it’s hard to keep the subtle relationship for a long distance. Recently, Totalfrank misses her so much and can’t wait to date her. But JoyZhang thinks that she would only date clever guys. So she decides to play an interesting checkers with him. And if he wins, she will date him.

They play checkers in a board with NN rows and 22 columns. Each player has exactly one piece in every column. Every round, Totalfrank must move one but only one of his two pieces upwards by a grid first, and then JoyZhang moves one of her two pieces downwards by a gird. When a piece meets another player’s piece, it must jump it, meaning that you should move it by two grids. Every piece can’t move out of board. The one who can’t move loses the game.

Now give you a situation and Totalfrank moves first, can you tell Totalfrank who will win. You may assume that they are all clever enough.

title

Pictures above are corresponding with sample inputs.

Input

The first line of input contains an integer TT (T2000T\leq 2000), which is the number of data sets that follow.

Every data set contains only one line with 55 integers NN, x1x_1, x2x_2, y1y_1, y2y_2, (2N1018,0x1,x2,y1,y2<N2\leq N\leq 10^{18}, 0\leq x_1,x_2,y_1,y_2 < N)indicating the number of rows, the distances from bottom to Totalfrank’s piece in 1st1_{st} column and 2nd2_{nd} column and the distances from top to JoyZhang’s piece in 1st1_{st} column and 2nd2_{nd} column. You can assume that no 22 pieces are in the same grid at the beginning.

Output

For every test case, you should output Case #k: first in a single line, where kk indicates the case number and starts at 11. Then output the Totalfrank if Totalfrank wins or JoyZhang if JoyZhang wins.

Samples

3
3 0 0 0 1
3 0 0 1 1
3 1 0 0 0
Case #1:
Totalfrank
Case #2:
JoyZhang
Case #3:
Totalfrank

Resources

The 9th UESTC Programming Contest Preliminary