#include using namespace std; using ll = long long; using pll = pair; #define drep(i, cc, n) for (ll i = (cc); i <= (n); ++i) #define rep(i, n) drep(i, 0, n - 1) #define all(a) (a).begin(), (a).end() #define pb push_back #define fi first #define se second mt19937_64 rng(chrono::system_clock::now().time_since_epoch().count()); const ll MOD1000000007 = 1000000007; const ll MOD998244353 = 998244353; const ll MOD[3] = {999727999, 1070777777, 1000000007}; const ll LINF = 1LL << 60LL; const int IINF = (1 << 30) - 1; template struct edge{ int from; int to; T cost; int id; edge(){} edge(int to, T cost=1) : from(-1), to(to), cost(cost){} edge(int to, T cost, int id) : from(-1), to(to), cost(cost), id(id){} edge(int from, int to, T cost, int id) : from(from), to(to), cost(cost), id(id){} void reverse(){swap(from, to);} }; template struct edges : std::vector>{ void sort(){ std::sort( (*this).begin(), (*this).end(), [](const edge& a, const edge& b){ return a.cost < b.cost; } ); } }; template struct graph : std::vector>{ int n = 0; int m = 0; edges es; bool directed; graph(int n, bool directed) : n(n), directed(directed){ (*this).resize(n); } void add_edge(int from, int to, T cost=1){ if(directed){ es.push_back(edge(from, to, cost, m)); (*this)[from].push_back(edge(from, to, cost, m++)); }else{ if(from > to) swap(from, to); es.push_back(edge(from, to, cost, m)); (*this)[from].push_back(edge(from, to, cost, m)); (*this)[to].push_back(edge(to, from, cost, m++)); } } }; template struct redge{ int from, to; T cap, cost; int rev; redge(int to, T cap, T cost=(T)(1)) : from(-1), to(to), cap(cap), cost(cost){} redge(int to, T cap, T cost, int rev) : from(-1), to(to), cap(cap), cost(cost), rev(rev){} }; template using Edges = vector>; template using weighted_graph = vector>; template using tree = vector>; using unweighted_graph = vector>; template using residual_graph = vector>>; vector dijkstra(weighted_graph G, int src){ int n = (int)G.size(); vector dist(n, LINF); dist[src] = 0; priority_queue, vector>, greater>> PQ; PQ.push({0, src}); while(!PQ.empty()){ int v = PQ.top().second; long long tmp = PQ.top().first; PQ.pop(); if(dist[v] < tmp) continue; for(edge e : G[v]){ if(dist[v]+e.cost < dist[e.to]){ dist[e.to] = dist[v]+e.cost; PQ.push({dist[e.to], e.to}); } } } return dist; } void solve(){ int n, m; cin >> n >> m; vector a(n); for(int i=0; i> a[i]; sort(all(a)); map mp; for(int i=1; i ans; for(int i=1; in){ cout << -1 << '\n'; return; } for(int y=a[i]; y<=m; y+=a[i]){ if(mp.find(y) != mp.end()){ mp[y] = true; }else{ cout << -1 << '\n'; return; } } ans.pb(a[i]); } cout << (int)ans.size() << '\n'; for(int v : ans) cout << v << ' '; cout << '\n'; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int T=1; //cin >> T; while(T--) solve(); }