#Lutece0416. Balanced_Point

Balanced_Point

Migrated from Lutece 416 Balanced_Point

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

Creating the stars is a boring job, the God also felt boring to do that. To make the creating more interesting, when created a star which had a mass value, the God put it at a position of a line. After created some stars, the God noticed that the he forgot where the mass central of the stars was. It was very important to know the mass central because the God needed to balance the mass. The God was very nervous. So, can you help the God with his problem? We assume there were no stars on the line at the beginning, and the universe was full of dust, whose mass is much lighter than a star and we can ignore it when compared with stars.

Input

There are several test cases and the input end with the end of file. In each case, the first line contains the length of the line LL (1L1000001\leq L\leq 100000) and the God’s action number QQ (1Q1000001\leq Q\leq 100000); following QQ lines, the first integer in each line is 00 or 11, if the integer is 00, and then follows 22 integers x,yx, y, (1xyL1\leq x\leq y\leq L) that indicate a query between xx and yy, and you should output the mass central between the xx and yy of that time; if the integer is 11, and then follow 22 integers p,vp, v, (1pL1\leq p\leq L, 1v1001\leq v\leq 100) that indicate the God puts a star whose mass is vv in the position pp.

Output

For every query, output a line contains only one number indicates where the mass central is. The output should round to 22 digits after decimal.

Samples

3 4
1 2 3
0 1 3
1 3 3
0 1 3
2.00
2.50

Resources

5th BUPT Programming Contest Preliminary