Mirko has found an old chessboard and a set of pieces in his attic. Unfortunately, the set contains only white pieces, and apparently an incorrect number of them. A set of pieces should contain:
- One king
- One queen
- Two rooks
- Two bishops
- Two knights
- Eight pawns
Mirko would like to know how many pieces of each type he should add or remove to make a valid set.
Input Specification
The input consists of 6 integers on a single line, each between
Output Specification
Output should consist of
Sample Input 1
Copy
0 1 2 2 2 7
Sample Output 1
Copy
1 0 0 0 0 1
Sample Input 2
Copy
2 1 2 1 2 1
Sample Output 2
Copy
-1 0 0 1 0 7
Comments