Peter is playing chess. However, he isn't playing any ordinary game of chess, he is playing infinite chess! In infinite chess the board is just like a normal chessboard, only infinite.
Each square has its own coordinate which is defined by
Furthermore, each square is either black or white. The top left square at row
Peter has a piece at a certain position, he wants to know if that piece is on a white square or a black square. Can you help him?
Constraints
Input Specification
The first and only line of input will contain two integers
Output Specification
Output either black
or white
depending on if the square the piece is on is black or white.
Sample Input 1
1 1
Sample Output 1
white
Sample Input 2
3 4
Sample Output 2
black
Comments