
void main()
{
	int a[3] = {1, 2, 3};
	int* begin = a;
	int *const end = begin + 3;

	int* f = find(begin, &end, 2);

}
