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