PROGRAMMING:The story of Daben (5) -- confession
Daben is 20 years old. It's time to express her love to the girl she's loved for a long time. Before the confession, Daben superstitiously found the fortune teller Dabu to make a divination. The master pointed to a piece of watermarked cloth and said: "when you return to one array, it's right. If you are even, it can be done.". That is to say, in an n * n (1 < = n < = 50) 0,1 square matrix, the number of 1 in each row and column is even, and the big run can be successful. Then, according to the watermark, can Daben advertise successfully?
###Input format:
Contains multiple test data. Each test data has multiple rows, the size of the first behavior matrix n (1 < = n < = 50), and the value of the following N behavior matrix.
###Output format:
If the advertisement can be successful, output "wonderful"
If the advertisement can not succeed, output "sorry"
###Input example:
Here is a set of inputs. For example:
```in
four
1 0 1 0
0 0 0 0
1 1 1 1
0 1 0 1
four
1 0 1 0
0 0 1 0
1 1 1 1
0 1 0 1
four
1 0 1 0
0 1 1 0
1 1 1 1
0 1 0 1
```
###Output example:
The corresponding output is given here. For example:
```out
Wonderful
Sorry
Sorry
```
answer:If there is no answer, please comment
###Input format:
Contains multiple test data. Each test data has multiple rows, the size of the first behavior matrix n (1 < = n < = 50), and the value of the following N behavior matrix.
###Output format:
If the advertisement can be successful, output "wonderful"
If the advertisement can not succeed, output "sorry"
###Input example:
Here is a set of inputs. For example:
```in
four
1 0 1 0
0 0 0 0
1 1 1 1
0 1 0 1
four
1 0 1 0
0 0 1 0
1 1 1 1
0 1 0 1
four
1 0 1 0
0 1 1 0
1 1 1 1
0 1 0 1
```
###Output example:
The corresponding output is given here. For example:
```out
Wonderful
Sorry
Sorry
```
answer:If there is no answer, please comment