import java.util.Scanner; public class No4 { public static boolean check (int half, int[] W, int i, boolean b) { if (i > 0) { i--; for (int j = i; j >= 0; j--) { if (b) break; if (half >= W[j]) { if (half - W[j] == 0) b = true; else b = check(half - W[j], W, j, b); } } } return b; } public static void main (String[] args) { Scanner scan = new Scanner(System.in); int N = scan.nextInt(); int W[] = new int[N]; int sum = 0; int half; boolean b = false; for (int i = 0; i < N; i++) { W[i] = scan.nextInt(); sum += W[i]; } //合計が奇数なら2等分することはできない if (sum % 2 != 0) { System.out.println("impossible"); System.exit(0); } half = sum/2; if (check(half, W, N, b)) System.out.println("possible"); else System.out.println("impossible"); } }