secret.cpp: In function 'void divi(ll, ll, ll, int*)':
secret.cpp:25:22: error: too few arguments to function 'void divi(ll, ll, ll, int*)'
25 | divi(l, mid, lev + 1);
| ^
secret.cpp:13:6: note: declared here
13 | void divi(ll l, ll r, ll lev, int A[]) {
| ^~~~
secret.cpp:26:26: error: too few arguments to function 'void divi(ll, ll, ll, int*)'
26 | divi(mid + 1, r, lev + 1);
| ^
secret.cpp:13:6: note: declared here
13 | void divi(ll l, ll r, ll lev, int A[]) {
| ^~~~
secret.cpp: In function 'void Init(int, int*)':
secret.cpp:33:18: error: expected primary-expression before ']' token
33 | divi(1, N, 0, A[]);
| ^