#P1025E. Colored Cubes

    ID: 4340 Type: RemoteJudge 1000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>constructive algorithmsimplementationmatrices*2700

Colored Cubes

No submission language available for this problem.

Description

Vasya passes all exams! Despite expectations, Vasya is not tired, moreover, he is ready for new challenges. However, he does not want to work too hard on difficult problems.

Vasya remembered that he has a not-so-hard puzzle: mm colored cubes are placed on a chessboard of size n×nn \times n. The fact is that mnm \leq n and all cubes have distinct colors. Each cube occupies exactly one cell. Also, there is a designated cell for each cube on the board, the puzzle is to place each cube on its place. The cubes are fragile, so in one operation you only can move one cube onto one of four neighboring by side cells, if only it is empty. Vasya wants to be careful, so each operation takes exactly one second.

Vasya used to train hard for VK Cup Final, so he can focus his attention on the puzzle for at most 33 hours, that is 1080010800 seconds. Help Vasya find such a sequence of operations that all cubes will be moved onto their designated places, and Vasya won't lose his attention.

The first line contains two integers nn and mm (1mn501 \leq m \leq n \leq 50).

Each of the next mm lines contains two integers xix_i, yiy_i (1xi,yin1 \leq x_i, y_i \leq n), the initial positions of the cubes.

The next mm lines describe the designated places for the cubes in the same format and order.

It is guaranteed that all initial positions are distinct and all designated places are distinct, however, it is possible that some initial positions coincide with some final positions.

In the first line print a single integer kk (0k108000 \le k \leq 10800) — the number of operations Vasya should make.

In each of the next kk lines you should describe one operation: print four integers x1x_1, y1y_1, x2x_2, y2y_2, where x1,y1x_1, y_1 is the position of the cube Vasya should move, and x2,y2x_2, y_2 is the new position of the cube. The cells x1,y1x_1, y_1 and x2,y2x_2, y_2 should have a common side, the cell x2,y2x_2, y_2 should be empty before the operation.

We can show that there always exists at least one solution. If there are multiple solutions, print any of them.

Input

The first line contains two integers nn and mm (1mn501 \leq m \leq n \leq 50).

Each of the next mm lines contains two integers xix_i, yiy_i (1xi,yin1 \leq x_i, y_i \leq n), the initial positions of the cubes.

The next mm lines describe the designated places for the cubes in the same format and order.

It is guaranteed that all initial positions are distinct and all designated places are distinct, however, it is possible that some initial positions coincide with some final positions.

Output

In the first line print a single integer kk (0k108000 \le k \leq 10800) — the number of operations Vasya should make.

In each of the next kk lines you should describe one operation: print four integers x1x_1, y1y_1, x2x_2, y2y_2, where x1,y1x_1, y_1 is the position of the cube Vasya should move, and x2,y2x_2, y_2 is the new position of the cube. The cells x1,y1x_1, y_1 and x2,y2x_2, y_2 should have a common side, the cell x2,y2x_2, y_2 should be empty before the operation.

We can show that there always exists at least one solution. If there are multiple solutions, print any of them.

Samples

Sample Input 1

2 1
1 1
2 2

Sample Output 1

2
1 1 1 2
1 2 2 2

Sample Input 2

2 2
1 1
2 2
1 2
2 1

Sample Output 2

2
2 2 2 1
1 1 1 2

Sample Input 3

2 2
2 1
2 2
2 2
2 1

Sample Output 3

4
2 1 1 1
2 2 2 1
1 1 1 2
1 2 2 2

Sample Input 4

4 3
2 2
2 3
3 3
3 2
2 2
2 3

Sample Output 4

9
2 2 1 2
1 2 1 1
2 3 2 2
3 3 2 3
2 2 1 2
1 1 2 1
2 1 3 1
3 1 3 2
1 2 2 2

Note

In the fourth example the printed sequence of movements (shown on the picture below) is valid, but not shortest. There is a solution in 33 operations.