ButaneBot is a talented artist, and he spends most of his time painting. When he was still human Butane was not very knowledgeable in art, and only programmed himself to be able to paint ~
characters and *
characters. After many trials and experiments, ButaneBot found that the most beautiful paintings he made using these two characters were those of starry nights, and so now he only paints starry nights. A painting is a starry night if it contains at least one star and all its *
characters are used for stars.
A star is a pattern that looks exactly like this:
~*~
***
~~~
To be more specific, if a star has its top *
at row and column , there should also be *
characters at , , and . Furthermore, stars may not share *
characters, that is, they CANNOT OVERLAP.
Invalid paintings are shown below:
~~~*~
~~***
~***~
~~~~~
~~*~~
~***~
~~~~~
~~~~~
~***~
~~*~~
~~*~~
~***~
~~~~~
~~~~*
~~~~~
For the first painting, there are 2 overlapping stars, or rather 3 extra *
characters whichever way you look at it. The second painting includes an upside down star pattern, which is not valid. The third painting has a rogue *
character not used for stars.
Given the dimensions of the canvas ButaneBot would like to paint his starry night on, find how many unique ways Butane can make his starry night painting. Since this number may be very large, output the number modulo .
Input Specification
The first and only line of input will contain 2 integers and , the height and width of the canvas.
Constraints
For all test cases, , .
Subtask 1 [20%]
Subtask 2 [20%]
Subtask 3 [60%]
Output Specification
Output one integer, the number of ways ButaneBot can paint a starry night on a canvas of size by .
Sample Input
2 6
Sample Output
5
Explanation for Sample Output
The 5 possible paintings are shown below:
~*~~~~ ~~*~~~ ~~~*~~ ~~~~*~ ~*~~*~
***~~~ ~***~~ ~~***~ ~~~*** ******
Comments
Would LLSLLLL LSSSSLL LLLSSSL be considered a starry night? (L's are the tildes and S's are the asterisks)
Yes, because the stars don't overlap each other.
Edited for clarity.