Problem7486--[CSES Problem Set] Coin Piles

7486: [CSES Problem Set] Coin Piles

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

You have two coin piles containing $a$ and $b$ coins. On each move, you can either remove one coin from the left pile and two coins from the right pile, or two coins from the left pile and one coin from the right pile.
Your task is to efficiently find out if you can empty both the piles.

Input

The first input line has an integer $t$: the number of tests.
After this, there are $t$ lines, each of which has two integers a and b: the numbers of coins in the piles.

Output

For each test, print "YES" if you can empty the piles and "NO" otherwise.

Constraints

$1≤t≤10^5$
$0≤a,b≤10^9$

Sample 1 Input

3
2 1
2 2
3 3

Sample 1 Output

YES
NO
YES

HINT

相同题目:CSES 1754

Source/Category