A match test series between India and England has just concluded.
Every match could have ended either as a win for India, a win for England, or a draw. You know the result of all the matches. Determine who won the series or if it ended in a draw.
A team is said to have won the series if it wins strictly more test matches than the other team.
Input Format
- First-line will contain , the number of test cases. Then the test cases follow.
- Each test case contains a single line of input, five space-separated integers denoting the results of all the five matches. denotes that the test match ends in a draw. denotes that the test match is won by India. denotes that the test match is won by England.
Output Format
For each test output "DRAW"
if the series ends in a draw, "INDIA"
if the series is won by India, and "ENGLAND"
if the series is won by England.
You may print each character of the string in uppercase or lowercase (for example, the strings "dRaw", "draw", "Draw" and "DRAW" will all be treated as identical).
Constraints
Sample Input 1
3
0 1 2 1 0
0 1 2 1 2
2 2 2 2 1
Sample Output 1
INDIA
DRAW
ENGLAND
Explanation
Test Case : India wins matches while England won match so India wins the series.
Test Case : Both teams win matches so the series ends in a draw.
Test Case : England won matches while India won match so England wins the series.
Comments
Post a Comment