for tc in range(1, 11):
n = int(input())
arr = []
for _ in range(100):
arr.append(list(map(int, input().split())))
idx = 99 # idx : μμνλ yκ°
x = arr[idx].index(2) # x : 맨 λ λμ°©μ μ xκ°
for idx in range(99, -1, -1):
left = x-1
right = x+1
# μΌμͺ½μ κ°μ΄ μ‘΄μ¬νλ κ²½μ°, μΌμͺ½μΌλ‘ λμ°©ν λκΉμ§ μ΄λ
if 0<=left<100 and arr[idx][left]:
# μ¬λΌκ°λ κ³³μ΄ μμΌλ©΄ μ μ§
while not arr[idx-1][left]:
left -= 1
x = left
# μ€λ₯Έμͺ½μ κ°μ΄ μ‘΄μ¬νλ κ²½μ°, μ€λ₯Έμͺ½μΌλ‘ λμ°©ν λκΉμ§ μ΄λ
elif 0<=right<100 and arr[idx][right]:
# μ¬λΌκ°λ κ³³μ΄ μμΌλ©΄ μ μ§
while not arr[idx-1][right]:
right += 1
x = right
print(f'#{n} {x}')
μκ·Ό μ€νΈλ μ€ λ§μ΄ λ°μλ λ¬Έμ ,,, μ½λλ₯Ό μ΄μνκ² μ§μ μ μΆμ‘°μ°¨ λμ§ μλ μν©μ΄ λμμλ€. μ²μμλ ν μ€νΈμΌμ΄μ€κ° λ무 컀μ κ·Έλ° μ΄μ λ‘ λ°μν μ€λ₯μΈμ€ μμμ§λ§, μμ λ΄ λ¬Έμ μλ κ±Έλ‘....κ·Έλλ ν΄κ²°ν΄μ λ€νμ΄λ€!