You are given some domino-like pieces. The following types of pieces are possible:

Note that there are only four types, and you may rotate and reflect any piece for further use. You want to place all the pieces in a matrix of size at most 800×800 so that you get a single non-self-touching cycle. Formally, this means:
The input consists of a single line containing four integers: the number of pieces of each type (in the order they are shown in the image). It is guaranteed that each number is at least 2 and at most 100, and that at least one valid answer exists.
The first line of output must contain two integers N and M (N,M≤800) denoting the number of rows and columns in your matrix. The next lines must describe the matrix in the following format:
If there are several valid answers, print any one of them.
