// // Created by Genes on 2020/10/16. // // 整除序列 #include<iostream> using namespace std; typedef long long ll; ll n; int main() { cin >> n; while (n) { cout << n << " "; n >>= 1; } return 0; }