Problem6431--a+b 数组

6431: a+b 数组

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

有 $n$ 个数,从 $1$ 到 $n$ 编号,给定任意两个数的编号,求出这两个数的和。

Input

输入共三行。
第一行输入一个整数 $n$。
第二行输入 $n$ 个整数,用空格隔开。
第三行输入两个数的编号(保证编号在 $1 \sim n$ 之间)

Output

输出两个编号对应的数之和。

Constraints

$1 \leq n \leq 100$
$n$ 个数都在 $1 \sim 1,000$ 以内。

Sample 1 Input

5
9 7 1 6 3
1 2

Sample 1 Output

16

Sample 2 Input

7
9 7 1 6 3 2 8
3 4

Sample 2 Output

7

Sample 3 Input

6
3 9 7 1 6 3
5 6

Sample 3 Output

9

Source/Category