Problem2063--二进制

2063: 二进制

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

输入正整数n<100000000, 看样例找规律输出
输入:1
输出:0


输入:3
输出:1 0 


输入:10
输出:3 1 






Input

7

Output

2 1 0

Sample Input Copy

14

Sample Output Copy

3 2 1

Source/Category

进制