/*
TASK: tre
LANG: C++
*/
#include <iostream>
#include <cstdlib>
#include <string>
using namespace std;

 int N,K,L,D;
 struct{
	 int pl[100][10001];
	 char can[10001];
       }gold;
 void inp()
 {cin>>N>>K>>L>>D;
  for(int i=0; i<D; i++)
   for(int j=0; j<L; j++)
    cin>>gold.pl[i][j];
 }


int cmp(const void *a, const void *b)
{
 int *p=(int *)a;
 int *q=(int *)b;
 if(p>q) return 1;
 if(p<q) return -1;
 return 0;
}


int main()
{inp();
 


    return 0;
}
