#include using namespace std; using ll = long long; #define rep(i, s, e) for (int i = (int)(s); i < (int)(e); ++i) #define all(a) (a).begin(),(a).end() #include using namespace atcoder; using mint = modint998244353; int main() { cin.tie(nullptr); ios_base::sync_with_stdio(false); int N, M, K; cin >> N >> M >> K; vector dp(M, vector(1 << N, 0)); rep(S, 0, 1 << N) dp[0][S] = 1; rep(i, 1, M) rep(S, 0, 1 << N) { rep(T, 0, 1 << N) if (__builtin_popcount(S & T) >= K) dp[i][S] += dp[i - 1][T]; } mint ans = 0; rep(S, 0, 1 << N) ans += dp[M - 1][S]; cout << ans.val() << '\n'; }