#C2187. Maximum Square Area

    ID: 45475 Type: Default 1000ms 256MiB

Maximum Square Area

Maximum Square Area

Given a length of fencing material \(L\), your task is to compute the maximum area of a square playground that can be enclosed. Note that the side length of the square is \(\left\lfloor \frac{L}{4} \right\rfloor\), and the area is the square of the side length.

For example, for \(L = 16\), the side length will be \(\lfloor 16/4 \rfloor = 4\), so the area will be \(4^2 = 16\). Similarly, for \(L = 40\), the area will be \(\lfloor 40/4 \rfloor^2 = 10^2 = 100\).

inputFormat

The input begins with a single integer \(T\) denoting the number of test cases. This is followed by \(T\) lines, each containing an integer \(L\) representing the length of the fencing material.

Input is provided via standard input (stdin).

outputFormat

For each test case, output a single integer representing the maximum square area that can be enclosed using the given fencing material. Each result should be printed on a new line via standard output (stdout).

## sample
2
16
40
16

100

</p>