#include <iostream>
#include <vector>
#include <cmath>
using namespace std;

int main() {
	int n, m;
    cin >> n >> m;
    n = max(n, m);
    vector<vector<int>> cedula(n, std::vector<int>(n));
}

//http://pt.stackoverflow.com/q/183755/101