2017: 【入门】求区间和
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:1
Solved:1
Description
有N个整数,请求出从A个数到第B个数之间的所有数的和。
Input
第一行有一个数N(3≤N≤300)其中N为数的个数
第二行有N个整数
第三行有两个整数A、B,A为这N个数中的第A个数,B为这N个数中的第B个数。(A≤B)
Output
仅一个数,即从第A个数开始至第B个数为止的所有数的和。
Sample Input Copy
5
4 3 5 7 1
2 4
Sample Output Copy
15