- Time limit: 1.00 s
- Memory limit: 512 MB
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 integers, find out the contents of the array after bubble sort rounds.
Input
The first line has two integers and : the array size and the number of rounds.
The next line has integers : the array contents.
Output
Print integers: the contents of the array after rounds.
Constraints
Example
Input:
5 2 3 2 4 1 4
Output:
2 1 3 4 4