Football Cup CodeChef Solution | CodeChef Problem Solution 2022
It is the final day of La Liga. Chef has a certain criteria for assessing football matches.
In particular, he only likes a match if:
- The match ends in a draw, and,
- At least one goal has been scored by either team.
Given the goals scored by both the teams as and respectively, determine whether Chef will like the match or not.
Input Format
- The first line of input will contain a single integer , denoting the number of test cases. The description of test cases follows.
- Each test case consists of a single line of input containing two space-separated integers and — the goals scored by each team.
Output Format
For each test case, output if Chef will like the match, else output .
You may print each character of the string in uppercase or lowercase (for example, the strings , , and will all be treated as identical).
Constraints
Sample Input 1
4
1 1
0 1
0 0
2 2
Sample Output 1
YES
NO
NO
YES
Explanation
Test case : It is a draw in which both teams have scored a goal, Chef will like this match.
Test case : The game is not a draw. Hence, Chef will not like this match.
Test case : Neither team scored a goal, so Chef will not like this match.
Test case : It is a draw in which both teams scored goals each. Chef will like this match.
Join Now for Solution:-
No comments:
Post a Comment