#include <iostream>
using namespace std;

int main()
{
	int x=25,y=1000;

   cout<<"The address of x is= "<< &x <<endl;
   cout<<"The value in x is "<< x << endl;
  
   return 0;
}

