import java.io.*; import java.util.*; import java.util.stream.*; public class Main { static int[] dp; static int[][] matrix; static int n; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); n = sc.nextInt(); matrix = new int[n][n]; for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { matrix[i][j] = sc.nextInt(); } } dp = new int[1 << n]; Arrays.fill(dp, -1); dp[0] = 0; System.out.println(dfw((1 << n) - 1)); } static int dfw(int x) { if (dp[x] < 0) { for (int i = 0; i < n; i++) { if ((x & (1 << i)) == 0) { continue; } for (int j = i + 1; j < n; j++) { if ((x & (1 << j)) == 0) { continue; } dp[x] = Math.max(dp[x], dfw(x - (1 << i) ^ (1 << j)) + matrix[i][j]); } break; } } return dp[x]; } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }