#codeforcesP2009B. osu!mania

osu!mania

Problem

You are playing your favorite rhythm game, osu!mania. The layout of your beatmap consists of nn rows and 44 columns. Because notes at the bottom are closer, you will process the bottommost row first and the topmost row last. Each row will contain exactly one note, represented as a '#'.

For each note 1,2,,n,1,2,…,n, in the order of processing, output the column in which the note appears.

Input

The first line contains t(1t100)t (1≤t≤100) — the number of test cases.

For each test case, the first line contains n(1n500)n (1≤n≤500) — the number of rows of the beatmap.

The following nn lines contain 44 characters. The ii-th line represents the ii-th row of the beatmap from the top. It is guaranteed that the characters are either '.' or '#', and exactly one of the characters is '#'.

Output

For each test case, output nn integers on a new line, the column that the ii-th note appears in for all ii from 11 to n.n.

Example : in

3
4
#...
.#..
..#.
...#
2
.#..
.#..
1
...#

Example : out

4 3 2 1 
2 2 
4