Given is a square grid of N×N squares. Your task is to paint each square of the grid either white or black such that:
It can be shown that such a construction always exists.
The input consists of one integer N (2≤N≤500).
Print N lines. On the i-th line, print a string of length N consisting of characters 'B' and 'W'. The j-th character in the i-th string corresponds to the square in i-th row and j-th column: 'B' denotes black squares and 'W' denotes white squares.