#include <iostream>
#include <math.h>

using namespace std;

typedef int Figure;


Figure (*board_mp)[8];

void Swan(Figure flashboard[8][8]) {
    board_mp = flashboard;
    cout<< "Swan on desck" <<endl;
}

int main()
{
	Figure arr[8][8];
	arr[5][2] = 4;
	arr[1][3] = 100;
	arr[2][4] = -3;
	Swan(arr);
	cout << board_mp[2][4] << endl << board_mp[5][2] << endl << board_mp[1][3];
	return 0;
}