#include #include #include #include using namespace std; using i64 = long long; using m32 = atcoder::static_modint<998244353>; #define rep(i,n) for(int i=0; i<(int)(n); i++) int main(){ i64 N,M; cin >> N >> M; vector A(N); rep(i,N) cin >> A[i]; vector B(M); rep(i,M) cin >> B[i]; int allxor = 0; for(auto a : A) allxor ^= a; for(auto a : B) allxor ^= a; if(allxor != 0){ cout << "0\n"; return 0; } m32 ans = m32(1<<20).pow(N-1).pow(M-1); cout << ans.val() << endl; return 0; } struct ios_do_not_sync{ ios_do_not_sync(){ std::ios::sync_with_stdio(false); std::cin.tie(nullptr); } } ios_do_not_sync_instance;