- Time limit: 1.00 s
- Memory limit: 512 MB
You are given an array of integers, and your task is to find four values (at distinct positions) whose sum is .
Input
The first input line has two integers and : the array size and the target sum.
The second line has integers : the array values.
Output
Print four integers: the positions of the values. If there are several solutions, you may print any of them. If there are no solutions, print IMPOSSIBLE
.
Constraints
Example
Input:
8 15 3 2 5 8 1 3 2 3
Output:
2 4 6 7