#include<iostream>
using namespace std;
int main()
{
    int a = 10;
    cout << a << endl; // The RValue of a integer variable
    cout << &a << endl; // The LValue of a integer variable
}