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