


(x-2,y+1)
(x-2,y-1)
(x+1,y-2)
(x-1,y-2)

If there is a coin at (1,1), Bob wins the game as Alice can make no move to start the game.
The first line contains 'T', denoting the number of test cases.
For each Test :
The first line contains three space-separated integers, ’X’ and ‘Y’.
For each query, if Alice wins, print “First” and if Bob wins, print “Second”..
You are not required to print the expected output. It has already been taken care of. Just implement the function.
1 <= 'T' <= 5 * 10^3
1 <= 'X',’Y’ <= 15.
Time Limit: 1 sec
From the starting point, we have at most four possible cells we could move to. For the current cell to be a winning state, at least one of the cells it can move to must be a losing state, as from the current cell, we can move to the losing state, thereby guaranteeing the opponent’s loss. So all we need to do is recursively check all the cells that are reachable from the current cell.
We can recursively compute the value for all cells reachable from the current cell, and speed up this process by storing the value computed at each cell. This guarantees that each value gets computed at most once.
Algorithm: