#CODEFESTIVAL2016FINALA. Where's Snuke?

Where's Snuke?

Score : 100100 points

Problem Statement

There is a grid with HH rows and WW columns.

The square at the ii-th row and jj-th column contains a string Si,jS_{i,j} of length 55.

The rows are labeled with the numbers from 11 through HH, and the columns are labeled with the uppercase English letters from A through the WW-th letter of the alphabet.

Exactly one of the squares in the grid contains the string snuke. Find this square and report its location.

For example, the square at the 66-th row and 88-th column should be reported as H6.

Constraints

  • 1H,W261 \leq H, W \leq 26
  • The length of Si,jS_{i,j} is 55.
  • Si,jS_{i,j} consists of lowercase English letters (a-z).
  • Exactly one of the given strings is equal to snuke.

Input

The input is given from Standard Input in the following format:

HH WW

S1,1S_{1,1} S1,2S_{1,2} ...... S1,WS_{1,W}

S2,1S_{2,1} S2,2S_{2,2} ...... S2,WS_{2,W}

::

SH,1S_{H,1} SH,2S_{H,2} ...... SH,WS_{H,W}

Output

Print the labels of the row and the column of the square containing the string snuke, with no space inbetween.

15 10
snake snake snake snake snake snake snake snake snake snake
snake snake snake snake snake snake snake snake snake snake
snake snake snake snake snake snake snake snake snake snake
snake snake snake snake snake snake snake snake snake snake
snake snake snake snake snake snake snake snake snake snake
snake snake snake snake snake snake snake snuke snake snake
snake snake snake snake snake snake snake snake snake snake
snake snake snake snake snake snake snake snake snake snake
snake snake snake snake snake snake snake snake snake snake
snake snake snake snake snake snake snake snake snake snake
snake snake snake snake snake snake snake snake snake snake
snake snake snake snake snake snake snake snake snake snake
snake snake snake snake snake snake snake snake snake snake
snake snake snake snake snake snake snake snake snake snake
snake snake snake snake snake snake snake snake snake snake
H6
1 1
snuke
A1