시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB31221270.588%

문제

A boy played a joke with his father.
Boy: "Dad, why is a math book so sad?"
Dad: "I don't know, why?"
Boy: "Because it has so many problems".

Enough about the boy, you have found yourself a problem from a math book for yourself. Given 3 equations:

x2+y2+z=100
(x+y)2+y=130
x2-y=-5

What is the value of x, y, and z? The answer is: 2, 9, and 15. Too easy right? You are to write a solution for harder problem, that is:

Given 4 integers A, B, C, and D, output the value of x, y, z in these equations:

x2+y2+z=A
(x+y)B+y=C
x2-y=D

If there are multiple possible solutions, output the one with the smallest value of x. If there are still multiple solutions, output the one with the smallest y. We are only interested in non-negative integer value of x, y, and z, output "No solution" if there is no possible solution that match this criteria. You may safely assume that every number in both inputs and outputs are integers and they can be stored in 16-bit data.

입력

The input contains many lines (not more than 10000 lines). There are 4 integers separated by a space in each line denoting A, B, C, and D respectively.

출력

For each input line, you are to output 3 integers in one line separated by a space denoting the possible value of x, y, and z respectively.

예제 입력 1

100 2 130 -5
150 3 3385 15

예제 출력 1

2 9 15
5 10 25