#include <iostream>
using namespace std;

int main() 
{
	int a[] = {31337, 0, 1, 2, 3, 4, 5};
	int *b = a + 5;
	int c = b[-5];
	int d = (-5)[b];
	
	cout << "c=" << c << ", d=" << d << endl;
	
	return 0;
}