secret.cpp: In function 'long long int get(long long int, long long int, long long int, long long int)':
secret.cpp:30:12: warning: left operand of comma operator has no effect [-Wunused-value]
if (tm + 1, tr, l, r) return get(tm + 1, tr, l, r);
~~~^~~
secret.cpp:30:21: warning: right operand of comma operator has no effect [-Wunused-value]
if (tm + 1, tr, l, r) return get(tm + 1, tr, l, r);
^
secret.cpp:30:24: warning: right operand of comma operator has no effect [-Wunused-value]
if (tm + 1, tr, l, r) return get(tm + 1, tr, l, r);
^
secret.cpp: In function 'long long int Query(long long int, long long int)':
secret.cpp:33:41: error: 'n' was not declared in this scope
int Query(int l, int r) { return get(1, n, l, r); }
^