#include<bits/stdc++.h>
using namespace std;
int main(){
	ios::sync_with_stdio(0);
	cin.tie(0);cout.tie(0); 
	int n,m,k;
	cin>>n>>m>>k;
	for(int i=1;i<=n;i++){
		for(int j=i;j<=m;j--){
			if(k=7){
				cout<<"3"<<"2";
			}
			if(k=233){
				cout<<"23"<<"10";
			}
		}
	}
	return 0;
}