#include using namespace std; int b[3][3]; int main() { int w, h, x; cin >> w >> h >> x; if(x > 36){ cout << -1 << endl; return 0; } for(int i = 0; i < 2; i++){ for(int j = 0; j < 2; j++){ b[i][j] = min(9, x); x -= b[i][j]; } } for(int i = 0; i < h; i++){ for(int j = 0; j < w; j++) cout << b[i % 3][j % 3]; cout << endl; } }