#include #include using namespace std; using namespace atcoder; struct Fast { Fast() { std::cin.tie(nullptr); ios::sync_with_stdio(false); cout << setprecision(10); } } fast; #define all(a) (a).begin(), (a).end() #define contains(a, x) ((a).find(x) != (a).end()) #define rep(i, a, b) for (int i = (a); i < (int)(b); i++) #define rrep(i, a, b) for (int i = (int)(b)-1; i >= (a); i--) #define writejoin(s, a) rep(_i, 0, (a).size()) cout << (a)[_i] << (_i + 1 < (int)(a).size() ? s : "\n"); #define YN(b) cout << ((b) ? "YES" : "NO") << "\n"; #define Yn(b) cout << ((b) ? "Yes" : "No") << "\n"; #define yn(b) cout << ((b) ? "yes" : "no") << "\n"; using ll = long long; int main() { int n, m; cin >> n >> m; vector a(n), b(m); rep(i, 0, n) cin >> a[i]; rep(i, 0, m) cin >> b[i]; using P = pair; priority_queue, function> pq([a, b](P x, P y) { ll v = a[x.first] * b[y.second] - a[y.first] * b[x.second]; return v != 0 ? v < 0 : x.first > y.first; }); rep(i, 0, n) pq.push(P(i, 0)); rep(k, 0, m) { auto p = pq.top(); pq.pop(); cout << (p.first + 1) << endl; pq.push(P(p.first, p.second + 1)); } }