n = int(input()) #繰り返し前のテンプレ tenple = [ [0, 1, 1, 4, 2, 1], [2, 3, 3, 4, 3, 0], [4, 2, 0] ] # 基本の繰り返し系 rep = [ [2, 1, 0], [1, 3, 3, 2, 3, 0], [2, 1, 4, 5, 0, 6], [4, 6, 8, 5, 8, 8], [5, 4, 6] ] #終了 (n%4 == 1) rep2 = [ [0, 1, 2], [2, 3, 3, 0, 1, 3], [1, 4, 4, 0, 4, 2] ] #終了 (n%4 == 2) rep3 = [ [0, 1, 2], [0, 3, 1, 4, 2, 5], [0, 3, 1, 4, 2, 5], [3, 4, 5, 6, 6, 6] ] #終了 (n%4 == 0) rep4 = [ [0, 1, 2], [0, 2, 3, 3, 1, 3], [0, 1, 2, 9, 4, 5], [5, 8, 9, 0, 4, 6], [5, 8, 9, 0, 4, 6], [6, 7, 7, 8, 0, 7] ] if n == 1: print("1\n0\n0\n0\n1\n1") elif n == 2: print("-1") elif n == 3: print("012\n345\n345\n225\n141\n300") elif n == 4: print("4551\n3662\n6777\n3005\n3442\n0112") elif n == 5: print("79142\n80653\n80453\n90966\n87754\n11223") elif n == 6: print("022586\n133097\n166600\n244397\n455898\n100667") elif n % 4 == 3: a = [[] for i in range(n)] a[0] = tenple[0] a[1] = tenple[1] a[2] = tenple[2] now = 5 piv = 2 while piv < n - 1: for j in range(5): for l in rep[j]: a[piv+j].append((l+now)%10) now += 9 piv += 4 a[n-1].append(now%10) a[n-1].append(now%10) a[n-1].append(now%10) r = ["".join([str(a[i][j]) for i in range(n)]) for j in range(6)] print(*r,sep="\n") elif n % 4 == 1: a = [[] for i in range(n)] a[0] = tenple[0] a[1] = tenple[1] a[2] = tenple[2] now = 5 piv = 2 while piv < n - 3: for j in range(5): for l in rep[j]: a[piv+j].append((l+now)%10) now += 9 piv += 4 for j in range(3): for l in rep2[j]: a[piv+j].append((l+now)%10) r = ["".join([str(a[i][j]) for i in range(n)]) for j in range(6)] print(*r,sep="\n") elif n % 4 == 2: a = [[] for i in range(n)] a[0] = tenple[0] a[1] = tenple[1] a[2] = tenple[2] now = 5 piv = 2 while piv < n - 4: for j in range(5): for l in rep[j]: a[piv+j].append((l+now)%10) now += 9 piv += 4 for j in range(4): for l in rep3[j]: a[piv+j].append((l+now)%10) r = ["".join([str(a[i][j]) for i in range(n)]) for j in range(6)] print(*r,sep="\n") elif n % 4 == 0: a = [[] for i in range(n)] a[0] = tenple[0] a[1] = tenple[1] a[2] = tenple[2] now = 5 piv = 2 while piv < n - 9: for j in range(5): for l in rep[j]: a[piv+j].append((l+now)%10) now += 9 piv += 4 for j in range(6): for l in rep4[j]: a[piv+j].append((l+now)%10) r = ["".join([str(a[i][j]) for i in range(n)]) for j in range(6)] print(*r,sep="\n")