#include <iostream>
using namespace std;

int main() {
	// note: 2097152 * 4 = 8 * 1024 * 1024
	int tab[2097153];
	
	cout << "hello world !" << endl;
	return 0;
}
