secret.cpp: In function 'void Init(int, int*)':
secret.cpp:18:14: error: 'secret' was not declared in this scope
rez[i][j]=secret(rez[i][j-1],a[pos+j]);
^~~~~~
secret.cpp:18:14: note: suggested alternative: 'Secret'
rez[i][j]=secret(rez[i][j-1],a[pos+j]);
^~~~~~
Secret
secret.cpp:25:10: error: 'secret' was not declared in this scope
to[j]=secret(a[j],to[j+1]);
^~~~~~
secret.cpp:25:10: note: suggested alternative: 'Secret'
to[j]=secret(a[j],to[j+1]);
^~~~~~
Secret
secret.cpp: In function 'int Query(int, int)':
secret.cpp:33:24: error: 'n' was not declared in this scope
if(__builtin_popcount(n-l)==1)
^
secret.cpp:42:10: error: 'secret' was not declared in this scope
return secret(to[l],rez[tpp[l]][r-(n-(1<<tpp[l]))])
^~~~~~
secret.cpp:42:10: note: suggested alternative: 'Secret'
return secret(to[l],rez[tpp[l]][r-(n-(1<<tpp[l]))])
^~~~~~
Secret
secret.cpp:43:2: error: expected ';' before '}' token
}
^