#include<bits/stdc++.h> using namespace std; #define int long long main() { int n; cin>>n; for(int i=pow(2,n); i>=2; i/=2) cout<<i<<endl; }