Problem B: 【一维数组】数组正序
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:141
Solved:111
Description
给你m个整数,将其正序输出.
Input
第一行一个整数m(3 <= m <= 100 ):数的个数
第二行m个整数(空格隔开)(这些数在0-9999999之间)
第二行m个整数(空格隔开)(这些数在0-9999999之间)
Output
m个整数(空格隔开)
Sample Input Copy
3
1 7 5
Sample Output Copy
1 7 5