import java.util.*; public class Exercise45{ public static void main (String[] args){ Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] weight = new int[n]; int sum = 0; for (int i = 0; i < n; i++){ int x = sc.nextInt(); weight[i] = x; sum += x; } boolean[] dp = new boolean[sum + 1]; dp[0] = true; for(int a = 0; a < n; a++){ for(int b = sum; b >= 0; b--){ if(dp[b] == true){ //System.out.println(b); dp[b + weight[a]] = true; } } } if (sum % 2 == 1 || !dp[sum / 2]){ System.out.println("impossible"); }else{ System.out.println("possible"); } } }