#include using namespace std; typedef long long ll; typedef pair P; const int INF = 1e9; const int mod = 1e9+7; const double EPS = 1e-10; const double PI = acos(-1.0); int dp[11000] = {1}; int main() { int n; cin >> n; int sum = 0; for(int i = 0; i < n; i++){ int w; cin >> w; sum += w; for(int j = 10000; j >= 0; j--){ if(dp[j]) dp[j+w] = 1; } } cout << (sum%2 == 0 && dp[sum/2] ? "possible" : "impossible") << endl; return 0; }