#include <iostream>
using namespace std;

int main() {
	// your code goes here
	int a = 0;
	int* c = &a;
	cout<<c;
	return 0;
}