Problem2226--输出前五个数字

2226: 输出前五个数字

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 2  Solved: 1
[Status] [Submit] [Creator:]

Description

输入n个整数,输出其前五个整数。

Input

输入两行,第一行一个整数n(5<=n<=1000)
第二行n个整数,数字间用空格隔开。

Output

输出一行,即输入的前五个数字,数字间以空格隔开。

Sample Input Copy

8
1 2 3 4 5 6 7 8

Sample Output Copy

1 2 3 4 5

Source/Category