#5718. CSES1144 工资查询

0

CSES1144 工资查询

Salary Queries

A company has n employees with certain salaries. Your task is to keep track of the salaries and process queries.

Input

The first input line contains two integers n and q: the number of employees and queries. The employees are numbered 1,2,\ldots,n. The next line has n integers p_1,p_2,\ldots,p_n: each employee's salary. After this, there are q lines describing the queries. Each line has one of the following forms:

! k x: change the salary of employee k to x

? a b: count the number of employees whose salary is between a \ldots b

Output

Print the answer to each ? query.

Constraints

1n,q21051 \le n, q \le 2 \cdot 10^5

1pi1091 \le p_i \le 10^9

1kn1 \le k \le n

1x1091 \le x \le 10^9

1ab1091 \le a \le b \le 10^9

Example

Input

5 3
3 7 2 2 5
? 2 3
! 3 6
? 2 3

Output

3
2