#include <iostream>
#include <limits>

int main() {
	char* a1 = new char[std::numeric_limits<std::size_t>::max()];
	return 0;
}