Problem
You are given numbers and .
Determine whether the average of and is strictly greater than or not?
NOTE: Average of and is defined as . For example, average of and is , average of and is .
Input Format
- The first line of input will contain a single integer TT, denoting the number of test cases.
- Each test case consists of 33 integers A, B,A,B, and CC.
Output Format
- For each test case, output YES if average of AA and BB is strictly greater than CC, NO otherwise.
- You may print each character of the string in uppercase or lowercase (for example, the strings YeS, yEs, yes and YES will all be treated as identical).
Constraints
1<= T <=1000
1<=A,B,C<=10