boxes.cpp: In function 'void process_cw(int)':
boxes.cpp:14:22: warning: declaration of 'k' shadows a global declaration [-Wshadow]
14 | void process_cw(int k) {
| ^
boxes.cpp:11:59: note: shadowed declaration is here
11 | ll s_cw, s_ccw, add, shift_cw, shift_ccw, n_cw, n_ccw, n, k;
| ^
boxes.cpp: In function 'void process_ccw(int)':
boxes.cpp:29:23: warning: declaration of 'k' shadows a global declaration [-Wshadow]
29 | void process_ccw(int k) {
| ^
boxes.cpp:11:59: note: shadowed declaration is here
11 | ll s_cw, s_ccw, add, shift_cw, shift_ccw, n_cw, n_ccw, n, k;
| ^
boxes.cpp: In function 'long long int delivery(int, int, int, int*)':
boxes.cpp:46:6: warning: declaration of 'n' shadows a global declaration [-Wshadow]
46 | ll n = (ll)n1, k = (ll)k1, l = (ll)l1;
| ^
boxes.cpp:11:56: note: shadowed declaration is here
11 | ll s_cw, s_ccw, add, shift_cw, shift_ccw, n_cw, n_ccw, n, k;
| ^
boxes.cpp:46:18: warning: declaration of 'k' shadows a global declaration [-Wshadow]
46 | ll n = (ll)n1, k = (ll)k1, l = (ll)l1;
| ^
boxes.cpp:11:59: note: shadowed declaration is here
11 | ll s_cw, s_ccw, add, shift_cw, shift_ccw, n_cw, n_ccw, n, k;
| ^
boxes.cpp:46:30: warning: declaration of 'l' shadows a global declaration [-Wshadow]
46 | ll n = (ll)n1, k = (ll)k1, l = (ll)l1;
| ^
boxes.cpp:12:26: note: shadowed declaration is here
12 | ll ans_cw, ans_ccw, ans, l;
| ^
boxes.cpp:96:14: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
96 | process_cw(k);
| ^
boxes.cpp:97:15: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
97 | process_ccw(k);
| ^