#include <iostream>
using namespace std;

int main() {
	int* a = new int[20];
	for (int i; i < 20; i++) {
		printf("%d", a[i]);
	}
	// your code goes here
	return 0;
}