시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 512 MB34141050.000%

문제

You are given a 3×3 grid which contains integers.

Some of the 9 elements in the grid will have a value already, and the remaining elements will be unspecified.

Your task is to determine values for the unspecified elements such that each row, when read from left-to-right is an arithmetic sequence, and that each column, when read from the top-down, is an arithmetic sequence.

Recall that an arithmetic sequence of length three is a sequence of integers of the form

a, a+d, a+2d

for integer values of a and d. Note that d may be any integer, including zero or a negative integer.

입력

The input will be 3 lines long. Each line will have three space-separated values. Each value will either be an integer in the range from −1000000 to 1000000, inclusive, or the symbol X.

For 4 of the 15 marks available, there will be at most 3 X symbols in the input.

For an additional 3 of the 15 marks available, all integer values in the input will be between −10 and 10, inclusive.

For an additional 4 of the 15 marks available, there will be at least 7 X symbols in the input.

For an additional 2 of the 15 marks available, all integer values in the input will be even numbers.

출력

The output will be 3 lines long. Each line will have three space-separated integers. All integers that were given in the input must be in their same position (i.e., same row and same column as in the input). All rows and columns must form arithmetic sequences. All integers in the output must be between −1000000000 and 1000000000, inclusive.

If there is more than one solution, output any solution. There is guaranteed to be at least one solution.

예제 입력 1

8 9 10
16 X 20
24 X 30

예제 출력 1

8 9 10
16 18 20
24 27 30

Notice that the second element of the second row must be 16+t and since 20=16+2t, then t=2, and thus, this unspecified element must be 18. A similar argument applies to the second element of the third row.

예제 입력 2

14 X X
X X 18
X 16 X

예제 출력 2

14 20 26
18 18 18
22 16 10

This is one of many possible solutions. For example, another solution is:

14 16 18
14 16 18
14 16 18