from sys import exit N = int(input()) W = tuple(map(int, input().split())) S = sum(W) if S % 2: print('impossible') exit() st = {0} for w in W: tmp = {s + w for s in st} st |= tmp print('possible' if S // 2 in st else 'impossible')