// The use of the address operator
#include <iostream>
using namespace std;

int main(){
  int n = 25;

  cout << "n = " << n << endl;
  cout << "&n = " << &n << endl;

  return 0;
}
