Bubble sort is a sorting algorithm that consists of a number of rounds. On each round the algorithm scans the array from left to right and swaps any adjacent elements that are in the wrong order.
Given an array of $n$ integers, find out the contents of the array after $k$ bubble sort rounds.
The first line has two integers $n$ and $k$ : the array size and the number of rounds.
The next line has $n$ integers $x_1,x_2,\dots,x_n$ : the array contents.
Print $n$ integers: the contents of the array after $k$ rounds.