#include <iostream>
using namespace std;

int main() {
	int* myArray[2] = {0, 0};
	int* anotherArray[2] = {nullptr, nullptr};
	return 0;
}