#include // #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; // using namespace atcoder; using ll = long long; using ld = long double; using pii = pair; using pll = pair; using vll = vector; using vvll = vector>; using vvvll = vector>>; using vii = vector; using vvii = vector>; using vvvii = vector>>; using vdd = vector; using vvdd = vector>; using vvvdd = vector>>; using vbb = vector; using vvbb = vector>; using vvvbb = vector>>; using vpll = vector; using vvpll = vector>; using vvvpll = vector>>; #define pb push_back #define mp make_pair #define sc second #define fr first #define endl '\n' #define stpr std::fixed << setprecision #define cYES cout << "YES" << endl #define cNO cout << "NO" << endl #define cYes cout << "Yes" << endl #define cNo cout << "No" << endl #define rep(i, n) for (ll i = 0; i < (n); ++i) #define drep(i, a, b, d) for (ll i = (a); i <= (b); i += d) #define Rep(i, a, b) for (ll i = (a); i < (b); ++i) #define rrep(i, n) for (ll i = n - 1; i >= 0; i--) #define drrep(i, a, b, d) for (ll i = (a); i >= (b); i -= d) #define rRep(i, a, b) for (ll i = a; i >= b; i--) #define crep(i) for (char i = 'a'; i <= 'z'; ++i) #define Crep(i) for (char i = 'A'; i <= 'Z'; ++i) #define ALL(x) (x).begin(), (x).end() #define rALL(x) (x).rbegin(), (x).rend() #define sort2(A, N) \ sort(A, A + N, \ [](const pii &a, const pii &b) { return a.second < b.second; }); #define debug(v) \ cout << #v << ":"; \ for (auto x : v) { \ cout << x << ' '; \ } \ cout << endl; int ctoi(const char c) { if ('0' <= c && c <= '9') return (c - '0'); return -1; } ll gcd(ll a, ll b) { return (b == 0 ? a : gcd(b, a % b)); } ll lcm(ll a, ll b) { return a * b / gcd(a, b); } constexpr ll MOD = 1000000007; constexpr ll INF = 1000000011; constexpr ll MOD2 = 998244353; constexpr ll LINF = 1001002003004005006ll; constexpr ld EPS = 10e-10; template inline bool chmax(T &lhs, const U &rhs) { if (lhs < rhs) { lhs = rhs; return 1; } return 0; } template inline bool chmin(T &lhs, const U &rhs) { if (lhs > rhs) { lhs = rhs; return 1; } return 0; } template istream &operator>>(istream &is, vector &v) { for (auto &&x : v) is >> x; return is; } template istream &operator>>(istream &is, pair &p) { is >> p.first; is >> p.second; return is; } template ostream &operator<<(ostream &os, const pair &p) { os << p.first << ' ' << p.second; return os; } template ostream &operator<<(ostream &os, vector &v) { for (auto i = begin(v); i != end(v); ++i) { if (i != begin(v)) os << ' '; os << *i; } return os; } int main() { ll W, H, X; cin >> W >> H >> X; ll Y = X; bool Z = 0; vvll P(3, vll(3, 0)); vvll ans(H, vll(W, 0)); rep(i, 2) { rep(j, 2) { P[i][j] = min(9ll, Y); Y -= P[i][j]; } } rep(b, 3) { rep(c, 3) { Z = 0; rep(i, H) { rep(j, W) { ans[i][j] = P[(i + b) % 3][(j + c) % 3]; } } rep(i, H) { rep(j, W) { ll s = 0; Rep(k, i - 1, i + 2) { Rep(l, j - 1, j + 2) { if (k >= 0 && k < H && l >= 0 && l < W) { s += ans[k][l]; } } } if (s != X) { Z = 1; } } } if (Z == 0) { rep(i, H) { rep(j, W) { cout << ans[i][j]; } cout << endl; } return 0; } } } Y = X; rep(i, 2) { rep(j, 2) { P[j][i] = min(9ll, Y); Y -= P[j][i]; } } rep(b, 3) { rep(c, 3) { Z = 0; rep(i, H) { rep(j, W) { ans[i][j] = P[(i + b) % 3][(j + c) % 3]; } } rep(i, H) { rep(j, W) { ll s = 0; Rep(k, i - 1, i + 2) { Rep(l, j - 1, j + 2) { if (k >= 0 && k < H && l >= 0 && l < W) { s += ans[k][l]; } } } if (s != X) { Z = 1; } } } if (Z == 0) { rep(i, H) { rep(j, W) { cout << ans[i][j]; } cout << endl; } return 0; } } } cout << -1 << endl; }