#include <iostream>
#include <cstring>
using namespace std;

int main() {
	// your code goes here
	int arr[10000000];
	memset(arr,0,sizeof(arr));
	return 0;
}