We have a grid with $H$ rows and $W$ columns of squares, where each square is blue or red. The square at the $i$\-th row and $j$\-th column is blue if $A_{i, j}$ is `+`, and red if $A_{i, j}$ is `-`.
There is a piece on this grid, which is initially placed on the top-left square. Takahashi and Aoki will play a game using this piece.
Each of the two players has $0$ points in the beginning. They will alternately do the following operation, with Takahashi going first:
* Move the piece one square right or one square down. It is not allowed to move the piece outside the grid. Then, the player (who moved the piece) gets one point if the piece is now on a blue square, and loses one point if the piece is now on a red square.
The game ends when one of the players is unable to do the operation. Then, the player with the greater number of points wins the game if they have different numbers of points. Otherwise, the game is drawn.
Find the result of the game when both players play the game to get the best outcome.
## Constraints
* $1 \le H, W \le 2000$
* $A_{i, j}$ is `+` or `-`.
## Input
Input is given from Standard Input in the following format:
$H$ $W$
$A_{1, 1}A_{1, 2}A_{1, 3} \dots A_{1, W}$
$A_{2, 1}A_{2, 2}A_{2, 3} \dots A_{2, W}$
$A_{3, 1}A_{3, 2}A_{3, 3} \dots A_{3, W}$
$\hspace{2cm}\vdots$
$A_{H, 1}A_{H, 2}A_{H, 3} \dots A_{H, W}$
[samples]