#include #include using namespace std; using namespace __gnu_pbds; int main() { ios::sync_with_stdio(false); cin.tie(0); int n, m; cin >> n >> m; gp_hash_table mp; while (n--) { long long a; cin >> a; mp[a]++; } while (m--) { long long b; cin >> b; cout << mp[b] << (m > 0 ? ' ' : '\n'); } return 0; }