#include <iostream>

class TDigitalIntMatrix
{
public:
    TDigitalIntMatrix(int rows = 2, int columns = 2) {}
};

void test(const TDigitalIntMatrix &a) {
    std::cout << "shit happens" << std::endl;
}

int main() {
    test(1);
    return 0;
}