#K60907. Taco Game Winner
Taco Game Winner
Taco Game Winner
In this problem, you need to determine the winner of a simple game played on coordinates. Given two integers (a) and (b) representing coordinates, the winning rule is defined as follows: if (a = b), then the winner is BOB; otherwise, the winner is ALICE. You will be given multiple test cases. For each test case, output the winner based on the rule above.
inputFormat
The input begins with a single integer (T) ((1 \leq T \leq 10^5)), representing the number of test cases. Each of the following (T) lines contains two space-separated integers (a) and (b) ((0 \leq a, b \leq 10^6)).
outputFormat
For each test case, output a single line containing the name of the winner (either ALICE or BOB).## sample
3
1 2
2 2
3 1
ALICE
BOB
ALICE
</p>