CSES - KILO 2017 4/5 - Sticky Situation
  • Time limit: 1.00 s
  • Memory limit: 512 MB

While on summer camp, you are playing a game of hide-and-seek in the forest. You need to designate a “safe zone”, where, if the players manage to sneak there without being detected, they beat the seeker. It is therefore of utmost importance that this zone is well-chosen.

You point towards a tree as a suggestion, but your fellow hide-and-seekers are not satisfied. After all, the tree has branches stretching far and wide, and it will be difficult to determine whether a player has reached the safe zone. They want a very specific demarcation for the safe zone. So, you tell them to go and find some sticks, of which you will use three to mark a non-degenerate triangle (i.e. with strictly positive area) next to the tree which will count as the safe zone. After a while they return with a variety of sticks, but you are unsure whether you can actually form a triangle with the available sticks.

Can you write a program that determines whether you can make a triangle with exactly three of the collected sticks?

Input

The first line contains a single integer n, the number of sticks collected. Then follows one line with n positive integers, l_1, l_2, \ldots, l_n the lengths of the sticks which your fellow campers have collected.

Output

Output a single line containing a single word: possible if you can make a non-degenerate triangle with tree sticks of the provided lengths, and impossible if you can not.

Constraints

  • 3 \le n \le 20000
  • 1 \le l_i \le 2^{60}

Examples

Input:

3
1 1 1

Output:

possible

Input:

5
3 1 10 5 15

Output:

impossible