#include using namespace std; int main() { int n; cin >> n; vector s(n); set st; for (int i = 0; i < n; i++) { cin >> s[i]; sort(s[i].begin(), s[i].end()); st.insert(s[i]); } if (st.size() == 1) { cout << -1 << endl; return 0; } for (int i = 0; i < n; i++) { for (char c = 'a'; c <= 'z'; c++) { string t = s[i] + c; sort(t.begin(), t.end()); bool ok = true; for (int j = 0; j < n; j++) { if (i == j) { continue; } for (char d = 'a'; d <= 'z'; d++) { string u = s[j] + d; sort(u.begin(), u.end()); if (t == u) { ok = false; } } } if (ok) { cout << t << endl; return 0; } } } }