secret.cpp: In function 'int sol(int, int, int*)':
secret.cpp:13:37: error: 'Secret' was not declared in this scope
13 | for(int i=l;i<=mid;i++)dp[i][r]=Secret(dp[i][mid],dp[mid+1][r]);
| ^~~~~~
secret.cpp: In function 'int Query(int, int)':
secret.cpp:28:35: error: 'Secret' was not declared in this scope
28 | if(ll<=mid&&mid<rr)return Secret(dp[ll][mid],dp[mid+1][rr]);
| ^~~~~~
secret.cpp: In function 'int sol(int, int, int*)':
secret.cpp:14:1: warning: control reaches end of non-void function [-Wreturn-type]
14 | }
| ^