题库练习 Chip Game
← 上一题 下一题 →

A15325 | Chip Game

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Burenka and Tonya are playing an old Buryat game with a chip on a board of $n \times m$ cells.

At the beginning of the game, the chip is located in the lower left corner of the board. In one move, the player can move the chip to the right or up by any odd number of cells (but you cannot move the chip both to the right and up in one move). The one who cannot make a move loses.

Burenka makes the first move, the players take turns. Burenka really wants to win the game, but she is too lazy to come up with a strategy, so you are invited to solve the difficult task of finding it. Name the winner of the game (it is believed that Burenka and Tonya are masters of playing with chips, so they always move in the optimal way).

![](/uploads/acgo/image/521a0806431033d5_4c6748b316c2.jpeg)Chip's starting cell is green, the only cell from which chip can't move is red. if the chip is in the yellow cell, then blue cells are all options to move the chip in one move.

输入格式

The first line contains one integer $t$ ( $1 \leq t \leq 10^4$ ) — the number of test cases. The following is a description of the input data sets.

The only line of each test case contains two integers $n$ and $m$ ( $1 \leq n, m \leq 10^9$ ) — the dimensions of the game board.

输出格式

For each test case print a single line — the name of the winner of the game ("Burenka" or "Tonya").

输入输出样例

输入 #1
6
1 1
1 4
5 6
2 2
6 3
999999999 1000000000
输出 #1
Tonya
Burenka
Burenka
Tonya
Burenka
Burenka
C++ 编辑器
输入
输出