#include <iostream>
using namespace std;

void test1(int (some_array)[10])
{
	cout << "OK" << endl;
}

int main()
{
	int arr1[3];
	test1(arr1);

	int arr2[10];
	test1(arr2);

	int *arr3 = new int[5];
	test1(arr3);
	delete[] arr3;

return 0;
}