#P470E. Chessboard

Chessboard

Description

Chessboard is a board of n × n squares arranged in two alternating colors (black and white). Top left square is white. You are given board size n. Output an image of a chessboard, with black and white squares marked with '#' and '.' characters, respectively.

The only line of input contains an integer n (1 ≤ n ≤ 9).

Output an image of n × n chessboard.

Input

The only line of input contains an integer n (1 ≤ n ≤ 9).

Output

Output an image of n × n chessboard.

Samples

4

.#.#
#.#.
.#.#
#.#.