import sys input = sys.stdin.readline mod=998244353 N,M,K=map(int,input().split()) DP=[1]*(1<=K: NDP[k]=(NDP[k]+DP[j])%mod DP=NDP print(sum(DP)%mod)