407437: GYM102791 C Number of Apartments
Description
Recently a new building with a new layout was constructed in Monocarp's hometown. According to this new layout, the building consists of three types of apartments: three-room, five-room, and seven-room apartments. It's also known that each room of each apartment has exactly one window. In other words, a three-room apartment has three windows, a five-room — five windows, and a seven-room — seven windows.
Monocarp went around the building and counted $$$n$$$ windows. Now he is wondering, how many apartments of each type the building may have.
Unfortunately, Monocarp only recently has learned to count, so he is asking you to help him to calculate the possible quantities of three-room, five-room, and seven-room apartments in the building that has $$$n$$$ windows. If there are multiple answers, you can print any of them.
InputThe first line contains one integer $$$n$$$ ($$$1 \le n \le 10^{18}$$$) — the number of windows in the building.
OutputIf a building with the new layout and the given number of windows just can't exist, print $$$-1$$$.
Otherwise, print three non-negative integers — the possible number of three-room, five-room, and seven-room apartments. If there are multiple answers, print any of them.
ExamplesInput30Output
2 2 2Input
67Output
7 5 3Input
4Output
-1Note
In the first sample, one of possible answers is $$$2$$$ three-room apartments, $$$2$$$ five-room apartments, and $$$2$$$ seven-room apartments. So the number of windows is equal to $$$2 \cdot 3 + 2 \cdot 5 + 2 \cdot 7 = 30$$$.