You are given an array A of N integers where the ith element denotes that Bob has A[i] buckets of color i.
In one move, Bob can pick two buckets with the same color and transform them into a bucket of any other color.
Now, Bob is also given an array B of N integers where the ith element denotes that Bob needs at least B[i] buckets of color i. Find if it is possible for Bob to get the required number of buckets for each color using the specified moves. If possible, print 'Yes' else 'No' without quotes.
Note:
Input format
Output format
For each test case, print 'Yes' if it is possible for Bob to get the required number of buckets for each color. Otherwise, print 'No'. Print the output in a new line.
Constraints
1≤T≤101≤N≤1030≤A[i],B[i]≤105
For first test case:
For second test case: