Given two sets $A$ and $B$ that have $n$ and $m$ elements respectively with $n \geq m$, determine how many ways it is possible to match all the elements so that each element of $A$ is paired with exactly one element of $B$ and each element of $B$ is paired with at least one element of $A$. Below are all the possible assignments for the first sample.
Output
Print the number of ways in which the elements of the sets can be matched as requested in the problem. Since this number can be quite large, print the remainder of the division of that number with prime $998244353$.