There are $N$ candies arranged in a row from left to right.
Each of these candies has one color that is one of the $10^9$ colors called Color $1$, Color $2$, $\ldots$, and Color $10^9$.
For each $i = 1, 2, \ldots, N$, the color of the $i$\-th candy from the left is Color $c_i$.
From this row, Takahashi can choose $K$ consecutive candies and get them.
That is, he can choose an integer $i$ such that $1 \leq i \leq N-K+1$ and get the $i$\-th, $(i+1)$\-th, $(i+2)$\-th, $\ldots$, $(i+K-1)$\-th candy from the left.
Takahashi likes to eat colorful candies, so the more variety of colors his candies have, the happier he will be.
Print the maximum possible number of distinct colors in candies he gets.
## Constraints
* $1 \leq K \leq N \leq 3 \times 10^5$
* $1 \leq c_i \leq 10^9$
* All values in input are integers.
## Input
Input is given from Standard Input in the following format:
$N$ $K$
$c_1$ $c_2$ $\ldots$ $c_N$
[samples]