Problem1052--数组-输入n个数字输出其中第4个数

1052: 数组-输入n个数字输出其中第4个数

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

Description

输入n个数字,输出其中第4个数字。(4<=n<=100)

Input

输入为两行。
第一行为n,表示整数序列的长度(4<=n<=100)
第二行为n个正整数,每两个数之间用一个空格隔开。

Output

仅一个正整数。

Sample Input Copy

10
1 3 5 7 9 2 4 6 8 0

Sample Output Copy

7

Source/Category

 入门