from itertools import permutations n = int(input()) if n == 1: a = 'abc' b = 'def' c = 'bhcb' elif n == 2: a = 'aabc' b = 'defg' c = 'hibcj' elif n == 3: a = 'spring' b = 'eight' c = 'picnic' S = set() for s in [a, b, c]: for ss in s: S.add(ss) num = len(S) L = list(S) s_to_i = dict() for i in range(num): s_to_i[L[i]] = i for P in permutations(range(num)): if P[s_to_i[a[0]]] == 0 or P[s_to_i[b[0]]] == 0 or P[s_to_i[c[0]]] == 0: continue ANS = [0, 0, 0] for i in range(3): s = [a, b, c][i] for d in range(len(s)): ANS[i] += P[s_to_i[s[d]]] * pow(10, len(s) - d - 1) if ANS[0] + ANS[1] == ANS[2]: print(ANS[2]) exit()