#!/usr/bin/env python3 #fileencoding: utf-8 N = int(input().strip()) max_weight = 100*100 weight = [0] * (max_weight+1) weight[0] = 1 total = 0 for i in input().strip().split(" "): w = int(i) total += w for j in range(total,-1,-1): if weight[j] == 1: weight[j+w] = 1 print("possible" if (total%2 == 0 and weight[total//2]) else "impossible")