#abc264b. [abc264_b]Nice Grid

[abc264_b]Nice Grid

Problem Statement

Print the color of the cell at the RR-th row from the top and CC-th column from the left in the following grid with 1515 vertical rows and 1515 horizontal columns.

Constraints

  • 1leqR,Cleq151 \\leq R, C \\leq 15
  • RR and CC are integers.

Input

Input is given from Standard Input in the following format:

RR CC

Output

In the grid above, if the color of the cell at the RR-th row from the top and CC-th column from the left is black, then print black; if the cell is white, then print white. Note that the judge is case-sensitive.


Sample Input 1

3 5

Sample Output 1

black

In the grid above, the cell at the 33-rd row from the top and 55-th column from the left is black. Thus, black should be printed.


Sample Input 2

4 5

Sample Output 2

white

In the grid above, the cell at the 44-th row from the top and 55-th column from the left is white. Thus, white should be printed.