Each sheet of paper can contain exactly one integer from 1 to 5, and there are as many sheets as needed.
Choose some sheets and write numbers on them so that the average of all written numbers is exactly P. Among all valid choices, use as few sheets as possible.
Given P, output how many times to write each of the numbers 1, 2, 3, 4, and 5.
The first line contains P. P is at least 1 and at most 5, and it is written with 1 to 9 digits after the decimal point.
Print five nonnegative integers on one line, separated by spaces. The first is the count of 1s, the second is the count of 2s, and so on through the count of 5s. If more than one answer is possible, print any one of them.