#K8731. Game Outcome Prediction
Game Outcome Prediction
Game Outcome Prediction
You are given a grid with N rows and M columns. Two players play a game on this grid. The outcome of the game is determined by the total number of cells in the grid. If the total number of cells, which is given by the formula \(N \times M\), is even then the game is a "Tie"; otherwise, the result is "Robin". Your task is to implement a program that, for each test case, computes the outcome of the game.
inputFormat
The first line of input contains an integer t (\(t \ge 1\)) representing the number of test cases. Each of the following t lines contains two space-separated integers N and M (\(1 \leq N, M \leq 10^{9}\)), which denote the number of rows and the number of columns of the grid, respectively.
outputFormat
For each test case, output a single line containing the result of the game: either "Robin" or "Tie".
## sample3
2 3
4 4
5 5
Tie
Tie
Robin
</p>