PROGRAMMING:The most beautiful guy in ward
Although I like studying algorithms very much, it doesn't bring me a certain income to support my life, so I have to find a way to earn some extra money to support my family.
"What do you do to make money?" I'm afraid it's too hot to move bricks and I'm not handsome enough to look at the gate.
"Zhang Yimou is more ugly than you. How rich he is now, and he directed the opening ceremony of the Olympic Games! Why don't you go to the entertainment industry? "
Ah Le is giving an idea.
Well, also, in order to survive, let's go to the entertainment industry and make a laser movie "the memory of ward - something about ACM and me".
Do what you say, audition the heroine immediately (find some x girl, learn from Mr. Zhang Yimou, this can attract attention, ha ha), and stipulate that,
Actors must have ACM skills, or they will go out directly! Due to the well planned promotion of pickled dried fish (master water monster), many mm came to apply,
Of course, including XX's cake sister and other girls with high voice, even xiaoyugan is also a woman's dress (!!) I came to apply for a job (fortunately, I recognized him and was fired away),
It seems that the entertainment industry is more attractive than ACM!
On the day of the interview, just came M × N mm, stand in one m × N queue, the deputy director cherish the hair of salted fish for each MM score, the score is a 32-bit signed integer.
At the beginning, I was very puzzled: how can there be negative scores? Xianyu, who cherishes her hair, explains that according to the selection rules, if her hair is dyed yellow, her make-up is too thick, she wears too little, and so on, she will be deducted points,
If you deduct too much, you may get a negative score. Of course, if you find that there is Japanese in the discourse, you will get a score of - 2147483648.
Scores sent up, it's time for me to make a decision, one of my selection principles is to choose an interview score absolute value (must be 32-bit integer) the largest mm.
Special note: if unfortunately choose a negative mm, it doesn't matter, because I think, if it can't attract you, then I want to disgust you.
###Input format:
There are several groups of input data. The first line of each group is two integers m and N, which represent the total number of rows and columns of mm. Then there are m lines of integers, and each line has n integers. For the definition of M and N, see the description of the topic.
###Output format:
For each group of input data, output three integers x, y and s, which respectively represent the row number, column number and fraction of the selected mm.
Note: row number and column number from the beginning, if the absolute value of multiple mm fractions is the same, then output the first one (that is, the one with the smallest row number, if the row number is the same, then take the one with the smallest column number).
###Input example:
Here is a set of inputs. For example:
```in
2 3
1 4 -3
-7 3 0
```
###Output example:
The corresponding output is given here. For example:
```out
2 1 -7
```
answer:If there is no answer, please comment
"What do you do to make money?" I'm afraid it's too hot to move bricks and I'm not handsome enough to look at the gate.
"Zhang Yimou is more ugly than you. How rich he is now, and he directed the opening ceremony of the Olympic Games! Why don't you go to the entertainment industry? "
Ah Le is giving an idea.
Well, also, in order to survive, let's go to the entertainment industry and make a laser movie "the memory of ward - something about ACM and me".
Do what you say, audition the heroine immediately (find some x girl, learn from Mr. Zhang Yimou, this can attract attention, ha ha), and stipulate that,
Actors must have ACM skills, or they will go out directly! Due to the well planned promotion of pickled dried fish (master water monster), many mm came to apply,
Of course, including XX's cake sister and other girls with high voice, even xiaoyugan is also a woman's dress (!!) I came to apply for a job (fortunately, I recognized him and was fired away),
It seems that the entertainment industry is more attractive than ACM!
On the day of the interview, just came M × N mm, stand in one m × N queue, the deputy director cherish the hair of salted fish for each MM score, the score is a 32-bit signed integer.
At the beginning, I was very puzzled: how can there be negative scores? Xianyu, who cherishes her hair, explains that according to the selection rules, if her hair is dyed yellow, her make-up is too thick, she wears too little, and so on, she will be deducted points,
If you deduct too much, you may get a negative score. Of course, if you find that there is Japanese in the discourse, you will get a score of - 2147483648.
Scores sent up, it's time for me to make a decision, one of my selection principles is to choose an interview score absolute value (must be 32-bit integer) the largest mm.
Special note: if unfortunately choose a negative mm, it doesn't matter, because I think, if it can't attract you, then I want to disgust you.
###Input format:
There are several groups of input data. The first line of each group is two integers m and N, which represent the total number of rows and columns of mm. Then there are m lines of integers, and each line has n integers. For the definition of M and N, see the description of the topic.
###Output format:
For each group of input data, output three integers x, y and s, which respectively represent the row number, column number and fraction of the selected mm.
Note: row number and column number from the beginning, if the absolute value of multiple mm fractions is the same, then output the first one (that is, the one with the smallest row number, if the row number is the same, then take the one with the smallest column number).
###Input example:
Here is a set of inputs. For example:
```in
2 3
1 4 -3
-7 3 0
```
###Output example:
The corresponding output is given here. For example:
```out
2 1 -7
```
answer:If there is no answer, please comment