N = int(input()) ws = list(map(int, input().split())) W = sum(ws) // 2 if sum(ws) % 2 != 0: print('impossible') elif W < max(ws): print('impossible') else: weight = set([0]) ws.sort() while len(ws) > 0: w = ws.pop() tmp_set = set() for i in weight: if i + w <= W: tmp_set.add(i + w) weight.update(tmp_set) if W in weight: print('possible') else: print('impossible')