#include <iostream>
using namespace std;
int main()
{
    int i;
    int &ri = i;
    cout << &ri << endl << &i;
    return 0;
}