secret.cpp: In function 'void go(int, int, int*)':
secret.cpp:8:57: error: 'Secret' was not declared in this scope
8 | for(int i = mid + 2; i <= r; i++) dnc[mid + 1][i] = Secret(dnc[mid + 1][i - 1], A[i]);
| ^~~~~~
secret.cpp:9:53: error: 'Secret' was not declared in this scope
9 | for(int i = mid - 1; i >= l; i--) dnc[mid][i] = Secret(A[i], dnc[mid][i + 1]);
| ^~~~~~
secret.cpp: In function 'int Query(int, int)':
secret.cpp:25:20: error: 'Secret' was not declared in this scope
25 | return Secret(dnc[mid][L], dnc[mid + 1][R]);
| ^~~~~~