#include #include #include using namespace std; using namespace atcoder; using mint=modint998244353; mint f[600060], invf[600060]; void fac(int n){ f[0]=1; for(int i=1; i<=n; i++) f[i]=f[i-1]*i; invf[n]=f[n].inv(); for(int i=n-1; i>=0; i--) invf[i]=invf[i+1]*(i+1); } mint comb(int x, int y){ if(!(0<=y && y<=x)) return 0; return f[x]*invf[y]*invf[x-y]; } int main() { int a, b, c; cin>>a>>b>>c; int n=a+b+c; if(n%2!=0){ cout<<0<