#include using namespace std; #ifdef _RUTHEN #include #else #define show(...) true #endif #define REP(i, n) for (int i = 0; i < (n); i++) template using V = vector; #include #include using mint = atcoder::modint998244353; int main() { ios::sync_with_stdio(false); cin.tie(0); int N, Q; cin >> N >> Q; atcoder::dsu uf(N + N); REP(i, Q) { int a, b, c; cin >> a >> b >> c; a--, b--; if (c == 0) { uf.merge(a, b); uf.merge(a + N, b + N); } else { uf.merge(a + N, b); uf.merge(a, b + N); } } int ok = 1; REP(i, N) if (uf.same(i, i + N)) ok = 0; mint ans = ok ? mint(2).pow(uf.groups().size() / 2) : 0; cout << ans.val() << '\n'; return 0; }