#include <iostream>
#include <complex>

int main() 
{
	using namespace std::complex_literals;
	std::complex<double> matrix[2][2] = 
	    {{ 1.0 + 0i, 0.0 + 1i}, 
	     {-1.0 + 0i, 0.0 - 1i}};
	for(const auto& row: matrix) {
		for(const auto& c: row)
			std::cout << c << ' ';
		std::cout << '\n';
	}
}