You are given an array $$$a$$$ of length $$$n$$$ and a positive integer $$$k$$$.
You will perform the following operation on the array exactly $$$k$$$ times:
After performing the operation exactly $$$k$$$ times, print the resulting array.
The first line contains two integers $$$n$$$ and $$$k$$$ ($$$1 \leq k \lt n \leq 10^5$$$) — the size of the array and the number of operations.
The second line contains $$$n$$$ integers $$$a_1, a_2, \ldots, a_n$$$ ($$$1 \leq a_i \leq 10^9$$$) — the elements of the array.
Print $$$n - k$$$ integers — the elements of the resulting array after performing the operations.
5 2 1 2 3 4 5
2 3 4