N=int(input()) PV=[int(s) for s in input().split()] M=sum(PV)/2 sa={0} for x in PV: sa |={x+y for y in sa if x+y<=M} print(["impossible","possible"][M in sa])