시간 제한메모리 제한제출정답맞힌 사람정답 비율
3 초 128 MB298628.571%

문제

Byteasar has a pack of n cards that he likes to shuffle. The positions of cards are numbered from 1 to n. Byteasar has acquired such a skill in shuffling that each time he obtains the same arrangement, i.e. a card from the k-th position (1 ≤ k ≤ n) always goes to the same ak-th position. We denote by bk the position of the k-th card (i.e. the card initially placed at the k-th position) after Byteasar repeated shuffling l times.

Write a program which:

  • reads from the standard input the numbers n and l and the sequence of numbers ,(bk)
  • determines the sequence of numbers (ak),
  • writes that sequence to the standard output.

입력

In the first line of the standard input there are two positive integers n and l (1 ≤ n, l ≤ 1,000,000). In the consecutive n lines there are successive elements of the sequence (bk), one per line. In the (k+1)-st line there is a positive integer bk: the final position of the card from the k-th position, 1 ≤ bk ≤ n.

출력

Your program should write to the standard output n integers: successive elements of the sequence (ak), one per line. In the k-th line there should be one number ak: the position of the card from the k-th position after a single shuffle. You may assume that for the test data there always exist the desired sequence (ak). If there are many such sequences your program should write one of them (arbitrary).

예제 입력 1

5 2
1
2
5
3
4

예제 출력 1

1
2
4
5
3

예제 입력 2

5 2
1
2
5
3
4

예제 출력 2

2
1
4
5
3