数组顺序输出
You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.
题目描述
将一个数组中的所有值按先后顺序输出。
输入格式
输入为两行:第一行数组中元素的个数 n,第二行是 n 个整数,每两个整数之间用空格分隔。
输出格式
输出为一行:输出数组的整数,每两个整数之间用空格分隔。
样例
输入样例
5
8 6 5 4 1
输出样例
8 6 5 4 1
数据范围与提示