PROGRAMMING:Find the triangle
Can you find three of the given $$n $$numbers so that they can form a triangle.
###Input format:
The first line gives an integer $$n, N, 10 ^ 5 $$.
The second line gives $$n $$integers $$a_ i, 0 \le a_ i \le 10^9$$
###Output format:
If there are multiple groups of numbers that meet the requirements, please output any group.
If there is no output * * - 1 * *.
###Input example:
```in
five
1 2 3 4 5
```
###Output example:
```out
4 2 5
```
answer:If there is no answer, please comment
###Input format:
The first line gives an integer $$n, N, 10 ^ 5 $$.
The second line gives $$n $$integers $$a_ i, 0 \le a_ i \le 10^9$$
###Output format:
If there are multiple groups of numbers that meet the requirements, please output any group.
If there is no output * * - 1 * *.
###Input example:
```in
five
1 2 3 4 5
```
###Output example:
```out
4 2 5
```
answer:If there is no answer, please comment