- Time limit: 1.00 s
- Memory limit: 512 MB
Given an array of integers, your task is to process queries of the following types:
- increase each value in range by
- what is the value at position ?
Input
The first input line has two integers and : the number of values and queries.
The second line has integers : the array values.
Finally, there are lines describing the queries. Each line has three integers: either " " or " ".
Output
Print the result of each query of type 2.
Constraints
Example
Input:
8 3 3 2 4 5 1 1 5 3 2 4 1 2 5 1 2 4
Output:
5 6