#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include using namespace std; const int MOD=998244353; ll dp[200200]; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); ll n,x,y; cin>>n>>x>>y; if(x>y) swap(x,y); if(x>1) x++; if(yy){ cout<<0<=0) dp[i]=(dp[i]+dp[i-1]+dp[i-3])%MOD; else dp[i]=(dp[i]+dp[i-1])%MOD; } cout<