Problem2129--删中间2个数 (课程D)

2129: 删中间2个数 (课程D)

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

Description

题目描述

有N个正整数放到数组里,要求把数组的中间2位置数删除,其他的数据次序不变,输出新数组。

输入格式  219.in

第一行1个正整数:N,范围在[1,100]、N是偶数。
第二行N个不同的正整数:范围在[1,10000]。

输出格式  219.out

N-2个正整数。

输入样例

6
2 6 1 9 7 2

输出样例

2 6 7 2 

Sample Input Copy

6
2 6 1 9 7 2

Sample Output Copy

2 6 7 2 

Source/Category