import java.util.Scanner; public class No4 { public static void main (String[] args) { Scanner scan = new Scanner(System.in); int N = scan.nextInt(); int t, sum = 0; //インデックスのおもさを作り出せるかどうか boolean[] w = new boolean[10101]; w[0] = true; for (int i = 0; i < N; i++) { t = scan.nextInt(); sum += t; for (int j = 10000; j >= 0; j--) w[j+t] = w[j]; } //二等分できないとき、または半分のおもさにできない場合 impossible System.out.println((sum & 1)==1 || !w[sum/2] ? "impossible" : "possible"); } }