Sums
Easy
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
Given an integer , express it as the sum of at least two consecutive positive integers. For example:
If there are multiple solutions, output the one with the smallest possible number of summands.
Input
The first line contains the number of test cases . Each test case consists of one line containing an integer .
Output
For each test case, output a single line containing the equation in the format:
as in the example. If there is no solution, output a single word IMPOSSIBLE instead.
Examples
Input #1
Answer #1
Submissions 2K
Acceptance rate 29%