#include <iostream>
#include <string.h>
using namespace std;

int main() {
	// your code goes here
	int *arr = new int[100];
	memset(arr,0xff,sizeof(int)*100);
	cout << arr[0] << arr[1];
	return 0;
}