#include #include #define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++) using namespace std; using namespace atcoder; typedef long long ll; int op(int a, int b) { return a ^ b; } int e() { return 0; } int main() { int n, k; cin >> n >> k; vector a(n); rep(i, 0, n) cin >> a[i]; map ma; int x = 0; ma[0]++; rep(i, 0, n) { x ^= a[i]; ma[x]++; } x = 0; int ct = 0; rep(i, 0, n) { ma[x]--; ct += ma[x]; x ^= a[i]; } cerr << ct << endl; if (ct >= 2) { cout << "No" << endl; return 0; } else { cout << "Yes" << endl; } // segtree st(a); // int seg = 0; // int l = 0; // int ni = 0; // rep(i, 0, n) { // if (st.prod(ni, i + 1) == 0) { // seg++; // ni = i + 1; // } // } // cerr << seg << endl; // if (seg > 1) { // cout << "No" << endl; // return 0; // } }