1519: 采用指针变量表示地址的方法输入输出数组中的个元素

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:3141 Solved:2634

Description

采用指针变量表示地址的方法输入输出数组中的个元素

第一行为n,表示n个整数,

第二行为n个整数.


Input

第一行为n,表示n个整数,

第二行为n个整数.

Output

用指针变量表示地址的方法输出数组中的各个元素.

输出占一行,每个整数后面接一个空格.

Sample Input Copy

10
1 2 3 4 5 6 7 8 9 10 

Sample Output Copy

1 2 3 4 5 6 7 8 9 10