#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int N; cin >> N; vector A(N, 0); for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { string s; cin >> s; if (s == "nyanpass") A[j]++; } } int cnt = 0; for (int i = 0; i < N; i++) { if (A[i] == N - 1) cnt++; } if (cnt != 1) { cout << -1 << '\n'; return 0; } for (int i = 0; i < N; i++) { if (A[i] == N - 1) { cout << i + 1 << '\n'; } } return 0; }