#P1395B. Boboniu Plays Chess

    ID: 1314 Type: RemoteJudge 1000ms 512MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>constructive algorithms*1100

Boboniu Plays Chess

No submission language available for this problem.

Description

Boboniu likes playing chess with his employees. As we know, no employee can beat the boss in the chess game, so Boboniu has never lost in any round.

You are a new applicant for his company. Boboniu will test you with the following chess question:

Consider a n×mn\times m grid (rows are numbered from 11 to nn, and columns are numbered from 11 to mm). You have a chess piece, and it stands at some cell (Sx,Sy)(S_x,S_y) which is not on the border (i.e. 2Sxn12 \le S_x \le n-1 and 2Sym12 \le S_y \le m-1).

From the cell (x,y)(x,y), you can move your chess piece to (x,y)(x,y') (1ym,yy1\le y'\le m, y' \neq y) or (x,y)(x',y) (1xn,xx1\le x'\le n, x'\neq x). In other words, the chess piece moves as a rook. From the cell, you can move to any cell on the same row or column.

Your goal is to visit each cell exactly once. Can you find a solution?

Note that cells on the path between two adjacent cells in your route are not counted as visited, and it is not required to return to the starting point.

The only line of the input contains four integers nn, mm, SxS_x and SyS_y (3n,m1003\le n,m\le 100, 2Sxn12 \le S_x \le n-1, 2Sym12 \le S_y \le m-1) — the number of rows, the number of columns, and the initial position of your chess piece, respectively.

You should print nmn\cdot m lines.

The ii-th line should contain two integers xix_i and yiy_i (1xin1 \leq x_i \leq n, 1yim1 \leq y_i \leq m), denoting the ii-th cell that you visited. You should print exactly nmnm pairs (xi,yi)(x_i, y_i), they should cover all possible pairs (xi,yi)(x_i, y_i), such that 1xin1 \leq x_i \leq n, 1yim1 \leq y_i \leq m.

We can show that under these constraints there always exists a solution. If there are multiple answers, print any.

Input

The only line of the input contains four integers nn, mm, SxS_x and SyS_y (3n,m1003\le n,m\le 100, 2Sxn12 \le S_x \le n-1, 2Sym12 \le S_y \le m-1) — the number of rows, the number of columns, and the initial position of your chess piece, respectively.

Output

You should print nmn\cdot m lines.

The ii-th line should contain two integers xix_i and yiy_i (1xin1 \leq x_i \leq n, 1yim1 \leq y_i \leq m), denoting the ii-th cell that you visited. You should print exactly nmnm pairs (xi,yi)(x_i, y_i), they should cover all possible pairs (xi,yi)(x_i, y_i), such that 1xin1 \leq x_i \leq n, 1yim1 \leq y_i \leq m.

We can show that under these constraints there always exists a solution. If there are multiple answers, print any.

Samples

Sample Input 1

3 3 2 2

Sample Output 1

2 2
1 2
1 3
2 3
3 3
3 2
3 1
2 1
1 1

Sample Input 2

3 4 2 2

Sample Output 2

2 2
2 1
2 3
2 4
1 4
3 4
3 3
3 2
3 1
1 1
1 2
1 3

Note

Possible routes for two examples: