天天看點

Boboniu Plays Chess CodeForces - 1395B rat1200

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×m grid (rows are numbered from 1 to n, and columns are numbered from 1 to m). You have a chess piece, and it stands at some cell (Sx,Sy) which is not on the border (i.e. 2≤Sx≤n−1 and 2≤Sy≤m−1).

From the cell (x,y), you can move your chess piece to (x,y′) (1≤y′≤m,y′≠y) or (x′,y) (1≤x′≤n,x′≠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.

Input

The only line of the input contains four integers n, m, Sx and Sy (3≤n,m≤100, 2≤Sx≤n−1, 2≤Sy≤m−1) — the number of rows, the number of columns, and the initial position of your chess piece, respectively.

Output

You should print n⋅m lines.

The i-th line should contain two integers xi and yi (1≤xi≤n, 1≤yi≤m), denoting the i-th cell that you visited. You should print exactly nm pairs (xi,yi), they should cover all possible pairs (xi,yi), such that 1≤xi≤n, 1≤yi≤m.

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

Examples

Input

3 3 2 2

Output

2 2

1 2

1 3

2 3

3 3

3 2

3 1

2 1

1 1

Input

3 4 2 2

Output

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:

Boboniu Plays Chess CodeForces - 1395B rat1200

路徑問題一般用dfs遞歸來做

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<math.h>
#include<iostream>
#include<algorithm>
#include<queue>
#include<map>
#include<cstdio>
#include<vector>
#include<set>
#include<cstring>
#include<cstdlib>
#include<time.h>
#include<stack>
using namespace std;
#define ll long long
const int inf=0x3f3f3f;
const int maxn=1e6+6;
const int base=32;	
const int mod = 1e9+7;
int n,m;
int vis[105][105],num=0;
void dfs(int x,int y){
	printf("%d %d\n",x,y);
	vis[x][y]=1;
	num++;
	if(num==n*m) return;
	for(int i=1;i<=n;i++){
		if(vis[i][y]==0)
			dfs(i,y);
	}
	for(int i=1;i<=m;i++){
		if(vis[x][i]==0)
			dfs(x,i);
	}
}
int main()
{
	int sx,sy;
	cin>>n>>m>>sx>>sy;
	memset(vis,0,sizeof(vis));
	dfs(sx,sy);
	return 0;
}