#include <iostream>
#include <cstdint>
int main(){
	static const std::uint64_t Len = 0x7ffffffff;
	std::uint64_t StackOverFlow[Len];
	StackOverFlow[0] = 0xdeadbeef;

	return 0;
}