CSES - Sliding Window Median
  • Time limit: 1.00 s
  • Memory limit: 512 MB

You are given an array of nn integers. Your task is to calculate the median of each window of kk elements, from left to right.

The median is the middle element when the elements are sorted. If the number of elements is even, there are two possible medians and we assume that the median is the smaller of them.

Input

The first line contains two integers nn and kk: the number of elements and the size of the window.

Then there are nn integers x1,x2,,xnx_1,x_2,\ldots,x_n: the contents of the array.

Output

Print nk+1n-k+1 values: the medians.

Constraints

  • 1kn21051 \le k \le n \le 2 \cdot 10^5
  • 1xi1091 \le x_i \le 10^9

Example

Input:

8 3
2 4 3 5 8 1 2 1

Output:

3 4 5 5 2 1