You've got an array a, consisting of n integers. The array elements are indexed from 1 to n. Let's determine a two step operation like that:
You task is to find array a after exactly k described operations are applied.
The first line contains two space-separated integers n and k (1≤n≤2000, 0≤k≤109). The next line contains n space-separated integers a1,a2,...,an− elements of the array a (0≤ai≤109).
Print n integers − elements of the array a after the operations are applied to it. Print the elements in the order of increasing of their indexes in the array a. Separate the printed numbers by spaces.
3 1
1 2 3
1 3 6
5 0
3 14 15 92 6
3 14 15 92 6