As per given tree,MAX moves first, then MIN moves.
Both play optimally.
Branch 1 (MAX chooses strategy 1)
Leaf utilities: 8, 6, -1
MIN chooses the minimum:
\[
\min(8, 6, -1) = -1.
\]
So value of Branch 1 is:
\[
-1.
\]
Branch 2 (MAX chooses strategy 2)
Leaf utilities: 1, 5, 7
MIN chooses:
\[
\min(1, 5, 7) = 1.
\]
So value of Branch 2 is:
\[
1.
\]
Branch 3 (MAX chooses strategy 3)
Leaf utilities: -4, -3, -12
MIN chooses:
\[
\min(-4, -3, -12) = -12.
\]
So value of Branch 3 is:
\[
-12.
\]
At the root, MAX chooses the maximum among:
\[
-1, \quad 1, \quad -12.
\]
\[
\max(-1, 1, -12) = 1.
\]
This corresponds to strategy 2.
Final Answer:
\[
{2}
\]