Hide

Problem J
Jigsaw

You have found an old jigsaw puzzle in the attic of your house, left behind by the previous occupants. Because you like puzzles, you decide to put this one together. But before you start, you want to know whether this puzzle was left behind for a reason. Maybe it is incomplete? Maybe the box contains pieces from multiple puzzles?

If it looks like a complete puzzle, you also need to know how big your work surface needs to be. Nothing worse than having to start a jigsaw over because you started on a small table.

The box does not tell you the dimensions $w \times h$ of the puzzle, but you can quickly count the three types of pieces in the box:

  • Corner pieces, which touch two of the edges of the puzzle.

  • Edge pieces, which touch one of the edges of the puzzle.

  • Centre pieces, which touch none of the edges of the puzzle.

Do these pieces add up to a complete jigsaw puzzle? If so, what was the original size of the jigsaw puzzle?

Input

  • One line containing three integers $c$, $e$, and $m$ ($0\leq c,e,m\leq 10^9$), the number of corner pieces, edge pieces, and centre pieces respectively.

Output

If there exist numbers $w$ and $h$ satisfying $w\geq h\geq 2$ such that the original size of the jigsaw puzzle could have been $w\times h$, then output a single line containing $w$ and $h$. Otherwise, output “impossible”.

If there are multiple valid solutions, you may output any one of them.

Sample Input 1 Sample Output 1
4 8 4
4 4
Sample Input 2 Sample Output 2
4 10 14
impossible
Sample Input 3 Sample Output 3
4 12 6
impossible
Sample Input 4 Sample Output 4
4 2048 195063
773 255

Please log in to submit a solution to this problem

Log in