#include <iostream>
#include<bits/stdc++.h>

using namespace std;

int main() {
	// your code goes here
	int n=10;
	int *ptr;
	ptr=&n;
	cout<<ptr;
	return 0;
}