Slavko decided to challenge Mirko! He gave him a real number and a bag full of pieces of paper with exactly one number written on each paper. There is an unlimited quantity of each type of paper.
Mirko's task is to pick the minimum number of papers in a way that the average of the numbers written on them equals exactly .
Input Specification
First and only line of input contains real number .
will have between and decimal places, inclusive .
Output Specification
First and only line of output should contain five nonnegative integers - numbers of ones, twos, threes, fours and fives used, respectively. If there are multiple solutions, output any one of them.
Sample Input 1
5.0
Sample Output 1
0 0 0 0 1
Sample Input 2
4.5
Sample Output 2
0 0 0 1 1
Sample Input 3
3.20
Sample Output 3
0 0 4 1 0
Comments