#include using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n, m; cin >> n >> m; vector tb(1 << n), dp(1 << n); vector a(m); dp[0] = true; for(auto &&v : a){ cin >> v; tb[v] = true; for(int j = dp.size() - 1; j >= 0; j--){ if(dp[j]) dp[j | v] = true; } } for(int i = 0; i < n; i++){ for(int j = 0; j < i; j++){ if(!tb[a[i] & a[j]]){ cout << "No\n"; exit(0); } } } cout << (dp == tb && tb.back() ? "Yes" : "No") << '\n'; }