#include using namespace std; typedef long long int ll; constexpr ll mod=998244353; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n,m; cin >> n >> m; if(n==1 or n>m)printf("1\n"); else{ vector dp(m+1); dp[0]=1; for(int i=0;i