Given an array A of n integers. Find 3 different indices i,j,k that Ai+Aj+AK = x.
- The first line contains 2 integers n,x.
- The second line contains n integers Ai.
Output
- Print i,j,k. If there are multiple answer, print any of them. It is guaranteed that at least 1 answer exists.
Constraints
- 1≤n≤5000.
- 1≤Ai,x≤109
Example
Input:
4 8
1 2 5 7
Output:
1 2 3