#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
int n,m,x,y,z,p;
void C9(int &a,int &b)
{
int t=a;
swap(a,b);
b=n-t+1;
swap(n,m);
}
void hei(int &a,int &b)
{
b=m-b+1;
}
void uC9(int &a,int &b)
{
int t=b;
swap(a,b);
a=m-t+1;
swap(n,m);
}
int main()
{
cin>>n>>m>>x>>y>>z>>p;
int tn=n,tm=m;
x=x%4;y=y%2;z=z%4;
for(int i=0;i<p;i++)
{
int a,b;
cin>>a>>b;
n=tn,m=tm;
for(int j=0;j<x;j++) C9(a,b);
for(int j=0;j<y;j++) hei(a,b);
for(int j=0;j<z;j++) uC9(a,b);
cout<<a<<" "<<b<<endl;
}
return 0;
}