#include<iostream>

int main()
{ 
	const int n=99;
	const int *ptr=&n;
	std::cout << "address of n : " << ptr; 
}