eolymp
bolt
Try our new interface for solving problems
Problems

Knight move

Knight move

Time limit 1 second
Memory limit 128 MiB

The rectangular board of size n \times m~(n rows and m columns) is given. The chess knight is located in the left upper corner. You must relocate it to the right lower corner. The knight can move only either two cells down and one right, or one cell down and two cells right.

Find the number of knight paths from the left upper corner to the right lower corner.

Input data

Two positive integers n and m~(1 \le n, m \le 50).

Output data

Print the number of ways to relocate the knight from the left upper corner to the right lower corner of the board.

Examples

Input example #1
3 2
Output example #1
1
Input example #2
31 34
Output example #2
293930