#K48922. Certificate Eligibility Check

    ID: 28528 Type: Default 1000ms 256MiB

Certificate Eligibility Check

Certificate Eligibility Check

You are given a number of test cases. For each test case, you are provided with two integers: $P$ which represents the number of problems solved, and $Y$ which is the minimum number of problems required to earn a certificate. Your task is to determine for each test case whether the participant is eligible for a certificate. A certificate is awarded if $P \ge Y$; otherwise, the output should be "Try Again".

inputFormat

The first line of input contains a single integer T denoting the number of test cases. Each of the next T lines contains two space-separated integers P and Y.

outputFormat

For each test case, output a single line containing either "Certificate Awarded" if $P \ge Y$ or "Try Again" if $P < Y$.

## sample
3
7 5
10 10
100 1
Certificate Awarded

Certificate Awarded Certificate Awarded

</p>