N, M, K = map(int, input().split()) MOD = 998244353 DP = [1]*(1<= K: ndp[j] += DP[i] ndp[j] %= MOD DP = ndp print(sum(DP)%MOD)