#include <iostream>
using namespace std;

int main() {
	// your code goes here
	int i = 0, * const j = &i;
	
	std::cout << "i = " << i << ", *j = " << *j << std::endl;
	
	i = 7;
	
	std::cout << "i = " << i << ", *j = " << *j << std::endl;
	
	return 0;
}