/******************************************************************************
Online C Compiler.
Code, Compile, Run and Debug C program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <iostream>
using namespace std;
typedef long long LONGLONG;
typedef void const * LPCVOID;
int main()
{
LONGLONG i = 10;
cout << i << endl;
cout << (LPCVOID)i << endl;
cout << &i << endl;
return 0;
}