a = 1 input() s = 0 for v in map(int, input().split()): s += v a |= a << v success = s % 2 == 0 and (a & (1 << (s // 2))) != 0 print('possible' if success else 'impossible')