An island country JAGAN in a certain planet is very long and narrow, and extends east and west. This long country is said to consist of two major cultural areas | the eastern and the western. Regions in the east tend to have the eastern cultural features and regions in the west tend to have the western cultural features, but, of course, the boundary between the two cultural areas is not clear, which has been an issue.
You are given an assignment estimating the boundary using a given data set.
More precise specification of the assignment is as follows:
Sometimes all prefectures may be estimated to be the eastern or the western cultural area. In these cases, to simplify, you must virtually consider that the boundary is placed between prefecture No. 0 and No. 1 or between prefecture No. $n$ and No. $n+1$. When you get multiple minimums, you must output the most western (least-numbered) result.
Write a program to solve the assignment.
Each input is formatted as follows:
$n$ $m$
$d_{11} ... d_{1n}$
:
:
$d_{m1} ... d_{mn}$
The first line consists of two integers $n$ ($1 \leq n \leq 10,000$), $m$ ($1 \leq m \leq 100$), which indicate the number of prefectures and the number of features in the assignment. The following m lines are the given data set in the assignment. Each line contains exactly $n$ characters. The $j$-th character in the $i$-th line $d_{ij}$ is 'E' (east) or 'W' (west), which indicates $j$-th prefecture has the eastern or the western feature from the $i$-th point of view.
Print the estimated result in a line. The output consists of two integers sorted in the ascending order which indicate two prefectures touching the boundary.
2 1 WE
1 2
3 2 WWE WEE
1 2
Both estimates "1 2" and "2 3" achieve 1 error as the minimum. From the restriction that you must adopt the most western estimate, you must output "1 2".
3 1 WWW
3 4
In this case, all the prefectures are western. As described in the problem statement, you must virtually consider that the boundary is placed between third and fourth prefectures.
3 1 WEW
1 2
You cannot assume that 'E's and 'W's are separated.