static void post_multi(L a, L b, L c) { for (S _a : a) for (S _b : b) for (S _c : c) post(_a, _b, _c); } static void post_multi(S a, S b, L c) { post_multi(ll(a), ll(b), c); }