After logging into his CalTech application portfolio and seeing a fat rejection notice, Bryan is heartbroken. What does he do to take his mind off things? The Arcadia Computing Contest, obviously!
Knowing that the Arcadia Computing Contest is a rated contest, Bryan is dedicated to gain rating and obtain the elusive Master title. He knows that there will be
In order to get the Master title, Bryan needs to fulfill all of the following criteria:
- Score at least
points overall - Fully solve (get
points on) at least problems - Get a non-zero number of points on at least
problems
NOTE: The rating information provided in this problem is purely fictional and may not be representative of the actual difficulty of the contest.
Constraints
Input Specification
The first line will contain three integers,
The second line will contain six integers, corresponding to Bryan's score on each of the problems.
Output Specification
Output MASTER
if Bryan will receive the title, or REJECTED AGAIN
if he will not.
Sample Input 1
400 2 5
100 100 75 50 0 100
Sample Output 1
MASTER
Explanation for Sample 1
Bryan fully solves
Sample Input 2
500 3 4
100 100 100 0 0 0
Sample Output 2
REJECTED AGAIN
Explanation for Sample 2
Bryan fully solves
Comments