teams.cpp: In function 'void init(int, int*, int*)':
teams.cpp:14:31: warning: declaration of 'B' shadows a global declaration [-Wshadow]
14 | void init(int N, int A[], int B[]) {
| ~~~~^~~
teams.cpp:12:15: note: shadowed declaration is here
12 | int N, A[MN], B[MN], ord[MN];
| ^
teams.cpp:14:22: warning: declaration of 'A' shadows a global declaration [-Wshadow]
14 | void init(int N, int A[], int B[]) {
| ~~~~^~~
teams.cpp:12:8: note: shadowed declaration is here
12 | int N, A[MN], B[MN], ord[MN];
| ^
teams.cpp:14:15: warning: declaration of 'N' shadows a global declaration [-Wshadow]
14 | void init(int N, int A[], int B[]) {
| ~~~~^
teams.cpp:12:5: note: shadowed declaration is here
12 | int N, A[MN], B[MN], ord[MN];
| ^