#include <iostream>
using namespace std;

int greet(){
	cout<<"hello asha";
	return 0;
}

int main() {

//reference variable 

// int x=4;
// int y=x;
// y--;
// x++;
// cout<<x<<endl<<y;
int x=7;
int &y=x;
// x++;
// y++;
// cout<<x<<endl<<y;
cout<<&x<<endl;   // address of x variable: 0x7ffd868651e4
cout<<&y<<endl;

int z=greet();
	return 0;
}