import java.util.*; import java.io.*; import java.math.*; public class No792 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); String o = "A="; int[][] q = new int[(int)Math.pow(2, n)][n+1]; int c = 0; // ∧∨¬⊥⊤ for(int i = 0; i < Math.pow(2, n); i++) { for(int j = 0; j < n + 1; j++) { q[i][j] = sc.nextInt(); } } for(int i = 0; i < Math.pow(2, n); i++) { if(q[i][n] == 1) { c++; o += "("; for(int j = 0; j < n; j++) { if(q[i][j] == 1) o += "P_" + (j+1) + "∧"; else o += "¬P_" + (j+1) + "∧"; } o += ")"; } } if(c == 0) { System.out.println("A=⊥"); }else if(c == (int)Math.pow(2, n)) { System.out.println("A=⊤"); }else { o = o.replaceAll("∧\\)\\(", "\\)∨\\("); o = o.replaceAll("∧\\)", "\\)"); System.out.println(o); } } }