#!/usr/bin/env python3 import string def find_startswith(c, xs): for x in xs: if x.startswith(c): return x def find_roots(xs, ys): for c in string.ascii_uppercase: if find_startswith(c, xs) and find_startswith(c, ys): yield c def solve(xs, ys): n = len(''.join(xs)) roots = list(find_roots(xs, ys)) if len(roots) != 1: return -1 root, = roots a = find_startswith(root, xs) b = find_startswith(root, ys) while len(a) < n or len(b) < n: if len(a) < len(b): c = b[len(a) :][0] d = find_startswith(c, xs) if not d: return -1 a += d elif len(b) < len(a): c = a[len(b) :][0] d = find_startswith(c, ys) if not d: return -1 b += d else: return -1 assert a == b return a n = int(input()) xs = [ input() for _ in range(n) ] m = int(input()) ys = [ input() for _ in range(m) ] print(solve(xs, ys))