The first line of input contains N and K. The second line contains A1 and A2, and the third contains B1 and B2.
On the ith line of output, print the label of the ith cow from the left at the end of the exercise routine.
Initially, the order of the cows is [1,2,3,4,5,6,7] from left to right. After the first step of the process, the order is [1,5,4,3,2,6,7]. After the second step of the process, the order is [1,5,7,6,2,3,4]. Repeating both steps a second time yields the output of the sample.
Test cases 2-3 satisfy K≤100.
Test cases 4-13 satisfy no additional constraints.