You will have three number A, B, C each represents a+b, b+c, c+a respectively.
You need to answer what a, b, c are.
Example:
If A = 168, B = 134, C = 112
And you need to calculate what a,b,c are.
In this example, a = 73, b = 95, c = 39.
Input only contains three number A, B, C(0 <= A, B, C <= 2*10^8)
Output three number which represent a,b,c respectively.
We guarantee that a, b, c will be integers.
Remember to print \n at the end of output.