#codefestival2016finalf. [codefestival_2016_final_f]Road of the King

[codefestival_2016_final_f]Road of the King

Problem Statement

There are NN towns in Takahashi Kingdom. They are conveniently numbered 11 through NN.

Takahashi the king is planning to go on a tour of inspection for MM days. He will determine a sequence of towns cc, and visit town cic_i on the ii-th day. That is, on the ii-th day, he will travel from his current location to town cic_i. If he is already at town cic_i, he will stay at that town. His location just before the beginning of the tour is town 11, the capital. The tour ends at town cMc_M, without getting back to the capital.

The problem is that there is no paved road in this kingdom. He decided to resolve this issue by paving the road himself while traveling. When he travels from town aa to town bb, there will be a newly paved one-way road from town aa to town bb.

Since he cares for his people, he wants the following condition to be satisfied after his tour is over: "it is possible to travel from any town to any other town by traversing roads paved by him". How many sequences of towns cc satisfy this condition?

Constraints

  • 2N3002≦N≦300
  • 1M3001≦M≦300

Input

The input is given from Standard Input in the following format:

NN MM

Output

Print the number of sequences of towns satisfying the condition, modulo 1000000007(=109+7)1000000007 (=10^9+7).


Sample Input 1

3 3

Sample Output 1

2

As shown below, the condition is satisfied only when c=(2,3,1)c = (2,3,1) or c=(3,2,1)c = (3,2,1). Sequences such as c=(2,3,2)c = (2,3,2), c=(2,1,3)c = (2,1,3), c=(1,2,2)c = (1,2,2) do not satisfy the condition.


Sample Input 2

150 300

Sample Output 2

734286322

Sample Input 3

300 150

Sample Output 3

0