#include <iostream>
using namespace std;

int main() {
	int *i=new int;
	printf("%d", *i);
	// your code goes here
	return 0;
}