secret.cpp: In function 'void DC(int, int, int*)':
secret.cpp:9:47: error: 'Secret' was not declared in this scope
9 | for (int i = m - 1; i >= l;--i) prec[i][m] = Secret(prec[i + 1][m],A[i]);
| ^~~~~~
secret.cpp:10:47: error: 'Secret' was not declared in this scope
10 | for (int i = m + 2; i <= r;++i) prec[m][i] = Secret(prec[m + 1][i - 1],A[i]);
| ^~~~~~
secret.cpp: In function 'int Query(int, int)':
secret.cpp:22:30: error: 'Secret' was not declared in this scope
22 | if(L <= m && m < R) return Secret(prec[L][m],prec[m + 1],R);
| ^~~~~~