#Lutece0206. Count Color

Count Color

Migrated from Lutece 206 Count Color

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Chosen Problem Solving and Program design as an optional course, you are required to solve all kinds of problems. Here, we get a new problem.

There is a very long board with length LL centimeter, LL is a positive integer, so we can evenly divide the board into LL segments, and they are labeled by 1,2,L1, 2,\cdots L from left to right, each is 11 centimeter long. Now we have to color the board - one segment with only one color. We can do following two operations on the board:

  1. C A B C Color the board from segment AA to segment BB with color CC.
  2. P A B Output the number of different colors painted between segment AA and segment BB (including).

In our daily life, we have very few words to describe a color (red, green, blue, yellow…), so you may assume that the total number of different colors TT is very small. To make it simple, we express the names of colors as color 11, color 22, ... color TT. At the beginning, the board was painted in color 11. Now the rest of problem is left to your.

Input

There is only one testcase! First line of input contains LL (1L1000001\leq L\leq 100000), TT (1T301\leq T\leq 30) and OO (1O1000001\leq O\leq 100000). Here OO denotes the number of operations. Following OO lines, each contains C A B C or P A B (here AA, BB, CC are integers, and AA may be larger than BB) as an operation defined previously.

Output

Ouput results of the output operation in order, each line contains a number.

Samples

2 2 4
C 1 1 2
P 1 2
C 2 2 2
P 1 2
2
1

Note

The data used in this problem is unofficial data prepared by standy. So any mistake here does not imply mistake in the offcial judge data.

Resources

POJ Monthly--2006.03.26,dodo