secret.cpp: In function 'void get(int, int)':
secret.cpp:16:28: error: 'secret' was not declared in this scope; did you mean 'Secret'?
16 | dp[i][m] = secret(a[i], dp[i + 1][m]);
| ^~~~~~
| Secret
secret.cpp:20:32: error: 'secret' was not declared in this scope; did you mean 'Secret'?
20 | dp[m + 1][i] = secret(a[i], dp[m + 1][i - 1]);
| ^~~~~~
| Secret
secret.cpp: In function 'int Query(int, int)':
secret.cpp:38:18: error: 'l' was not declared in this scope
38 | if (find[l][r])
| ^
secret.cpp:38:21: error: 'r' was not declared in this scope
38 | if (find[l][r])
| ^
secret.cpp:40:22: error: 'l' was not declared in this scope
40 | for (int m = l; m < r; m++) {
| ^
secret.cpp:40:29: error: 'r' was not declared in this scope
40 | for (int m = l; m < r; m++) {
| ^
secret.cpp:42:32: error: 'secret' was not declared in this scope; did you mean 'Secret'?
42 | return secret(dp[l][m], dp[m + 1][r]);
| ^~~~~~
| Secret