#include<bits/stdc++.h>
#define int long long
#define IOS ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
using namespace std;
int dp[110][110];
signed main()
{
int n,m;
cin>>n>>m;
dp[1][0]=1;
for(int j=1;j<=m;j++)
{
for(int i=1;i<=n;i++)
{
int p=(i+n-2)%n+1;
int pp=i%n+1;
dp[i][j]+=dp[p][j-1];
dp[i][j]+=dp[pp][j-1];
}
}
cout<<dp[1][m]<<"\n";
}