Problem1063--数组-输出最后一个数

1063: 数组-输出最后一个数

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

Description

输入n个数字,输出最后一个数(1<=n<=100)

Input

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

Output

仅一个正整数。

Sample Input Copy

10
1 3 5 7 9 2 4 6 8 0

Sample Output Copy

0

Source/Category

入门