Help Vasilisa the Wise 2

题意翻译

有一个 $2\times2$ 的棋盘,有 9 个棋子,上面分别写着 1,2,3,…9。现在给出每行每列及每条对角线上两个棋子 的数之和,求相应的棋子摆放方法。无解输出 -1。

题目描述

Vasilisa the Wise from the Kingdom of Far Far Away got a magic box with a secret as a present from her friend Hellawisa the Wise from the Kingdom of A Little Closer. However, Vasilisa the Wise does not know what the box's secret is, since she cannot open it again. She hopes that you will help her one more time with that. The box's lock looks as follows: it contains $ 4 $ identical deepenings for gems as a $ 2×2 $ square, and some integer numbers are written at the lock's edge near the deepenings. The example of a lock is given on the picture below. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF143A/3afffa6690b0a7fee0cca96fe3fb7d95cf7329f2.png)The box is accompanied with $ 9 $ gems. Their shapes match the deepenings' shapes and each gem contains one number from $ 1 $ to $ 9 $ (each number is written on exactly one gem). The box will only open after it is decorated with gems correctly: that is, each deepening in the lock should be filled with exactly one gem. Also, the sums of numbers in the square's rows, columns and two diagonals of the square should match the numbers written at the lock's edge. For example, the above lock will open if we fill the deepenings with gems with numbers as is shown on the picture below. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF143A/3d3ced733d775964ba52205e4c988cebde0d133f.png)Now Vasilisa the Wise wants to define, given the numbers on the box's lock, which gems she should put in the deepenings to open the box. Help Vasilisa to solve this challenging task.

输入输出格式

输入格式


The input contains numbers written on the edges of the lock of the box. The first line contains space-separated integers $ r_{1} $ and $ r_{2} $ that define the required sums of numbers in the rows of the square. The second line contains space-separated integers $ c_{1} $ and $ c_{2} $ that define the required sums of numbers in the columns of the square. The third line contains space-separated integers $ d_{1} $ and $ d_{2} $ that define the required sums of numbers on the main and on the side diagonals of the square ( $ 1<=r_{1},r_{2},c_{1},c_{2},d_{1},d_{2}<=20 $ ). Correspondence between the above 6 variables and places where they are written is shown on the picture below. For more clarifications please look at the second sample test that demonstrates the example given in the problem statement. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF143A/f08042200b16ea0b985a26619f2a38dbdf350df2.png)

输出格式


Print the scheme of decorating the box with stones: two lines containing two space-separated integers from $ 1 $ to $ 9 $ . The numbers should be pairwise different. If there is no solution for the given lock, then print the single number "-1" (without the quotes). If there are several solutions, output any.

输入输出样例

输入样例 #1

3 7
4 6
5 5

输出样例 #1

1 2
3 4

输入样例 #2

11 10
13 8
5 16

输出样例 #2

4 7
9 1

输入样例 #3

1 2
3 4
5 6

输出样例 #3

-1

输入样例 #4

10 10
10 10
10 10

输出样例 #4

-1

说明

Pay attention to the last test from the statement: it is impossible to open the box because for that Vasilisa the Wise would need 4 identical gems containing number "5". However, Vasilisa only has one gem with each number from $ 1 $ to $ 9 $ .