The first line contains an integer $T$ ($1 \le T \le 4\times 10^3$), indicating the number of test cases.
Each test case contains four integers $E,L,R,B$ ($0 \le E,L,R,B \le 10^5, E+L+R+B\ge 1$), indicating the number of blocks.
- $E$: the number of blocks whose both sides are painted white.
- $L$: the number of blocks whose left side is painted black and right side is painted white.
- $R$: the number of blocks whose right side is painted black and left side is painted white.
- $B$: the number of blocks whose both sides are painted black.
It guaranteed that the sum of $E+L+R+B$ over all test cases won't exceed $10^6$.