#K32887. Advance to the Next Level

    ID: 24965 Type: Default 1000ms 256MiB

Advance to the Next Level

Advance to the Next Level

A player is attempting to advance to the next level in a game. The decision is made by comparing the player's current score C with the required score R. The player advances if and only if the condition $$C \ge R$$ holds true; otherwise, the player must try again.

Your task is to write a program that reads multiple test cases and for each one outputs Advance if the player can proceed to the next level or Try Again if not.

inputFormat

The first line of input contains an integer $$T$$, representing the number of test cases. Each of the following $$T$$ lines contains two space-separated integers: C (the player's current score) and R (the required score to advance).

outputFormat

For each test case, output a single line with either Advance if the player's score is greater than or equal to the required score (i.e. $$C \ge R$$), or Try Again otherwise.

## sample
1
100 50
Advance

</p>