The Dutch painter Piet Mondrian was fascinated by squares and rectangles.
One day he dreamed of completely filling a large rectangle using small rectangles of width $2$ and height $1$ (a $2 \times 1$ domino).
Given the size of the large rectangle, write a program that counts the number of ways to tile it with $2 \times 1$ dominoes. Each domino may be placed either horizontally or vertically, and dominoes must not overlap one another or extend outside the rectangle.
The input consists of several test cases. Each test case is a single line containing the height $h$ and the width $w$ of the large rectangle, separated by a space. ($1 \le h, w \le 11$)
The last line contains two zeros and is not processed.
For each test case, print on its own line the number of ways to tile the large rectangle with $2 \times 1$ dominoes.
The large rectangle has a fixed orientation (top/bottom and left/right are distinguished), so tilings that map onto each other by rotation or reflection are counted as distinct.