407437: GYM102791 C Number of Apartments

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

C. Number of Apartmentstime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard output

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.

Input

The first line contains one integer $$$n$$$ ($$$1 \le n \le 10^{18}$$$) — the number of windows in the building.

Output

If 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.

ExamplesInput
30
Output
2 2 2
Input
67
Output
7 5 3
Input
4
Output
-1
Note

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$$$.

加入题单

算法标签: