You are given $n$ toothpicks. You want to use them to make a $a \times b$ rectangular grid. Determine whether it is possible to do so. If it is possible, also find any grid that you can make.
Input
The first line of the input consists of a line with an integer, $n$, the number of toothpicks.
Output
If it is not possible to make a rectangular grid, output Impossible
.
Otherwise, output Possible
on the first line, then two integers $a$ and $b$ in the second line.
Constraints
For all testcases: $1 \le n \le 10^9$
Subtask 1 (30%): $n \le 1000$
Subtask 2 (70%): No additional constraints
Sample Test Cases
Input | Output | |
---|---|---|
17 | Possible 3 2 |
|
A 3 by 2 grid can be created with 17 toothpicks as follows: ![]() |
||
8 | Impossible |
Scoring: Per Subtask
Authored by s17f18
Appeared in 2025 Mini Comp 0