Problem1300--【例51.1】 删除元素

1300: 【例51.1】 删除元素

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 64 MB

Description

把一个数组的第$x$个位置的元素删除掉。

Input

有三行
第一行有一个整数$n$( $n\le 10$ );
第二行有$n$个整数;
第三行有一个整数$x$,为要删除的位置。

Output

更新后的数组。

Sample Input Copy

5
1 2 3 4 5
3

Sample Output Copy

1 2 4 5