You are given four integers $$$a, b, c,d$$$. Find any array satisfying those 4 conditions :
The suffix sum array of an array $$$a[1..n]$$$ of size $$$n$$$ is an array of size $$$n+1$$$ defined as follow :
The first line contains one integer $$$t$$$ $$$( 1 \le t \le 10^3)$$$ — the number of test cases.
Each test case contains 4 integers $$$a,b,c,d$$$ $$$(-10^9 \le a,b,c,d \le 10^9)$$$
For each test case :
If there is no answer output $$$-1$$$.
2 4 0 2 -3 6 -5 10 -1
-1 8 3 -8 6 2 -1 4 -6 5
In the second test case, the prefix sum array is : $$$[0,3,-5,1,3,2,6,0,5]$$$ and the suffix sum array is : $$$[5,2,10,4,2,3,-1,5,0]$$$.