2961: 练52.3 插队

Memory Limit:64 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

有$n$个人,每个人都有自己的编号,他们排成一个队列。现在一个编号为$b$的人要插到第$a$人(不是编号为$a$)后面,求插入后的队列顺序。

Input

第一行输入$n$,第二行输入$n$个数,表示原先的队伍顺序。($n\le 200$)
第三行输入两个数$a$,$b$。

Output

输出一行,为插入后的队列顺序。

Sample Input Copy

5
1 2 3 4 5
2 7

Sample Output Copy

1 2 7 3 4 5