#include <iostream>
using namespace std;

int main() {
	int i = 5;
	void* ptr = &i;
	int j = (int)ptr;
	// your code goes here
	return 0;
}