import math x, y, z, w = map(int, input().split()) if(z==0): x, y, z, w = y, x, w, z ans = y * math.factorial(x-z+y-w-1) * math.comb(x, z) ans %= 998244353 print(ans)